Skip to content

Commit

Permalink
Bump version, add changes for 1.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Apr 9, 2023
1 parent 5a9bebe commit 065899c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.2.3 - 9-Apr-2023
* Added rubygems_mfa_required and github_repo to metadata.
* Miscellaneous rubocop related updates.
* Fixed one test for Windows.
* The rubocop and rubocop-rspec gems are now development dependencies.
* Now assumes Ruby 2.0 or later.

## 1.2.2 - 30-Oct-2020
* Added a Gemfile.
* The ffi dependency is now slightly more restrictive.
Expand Down
2 changes: 1 addition & 1 deletion doc/uname.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Add additional info for Linux, Solaris, BSD.
Apache-2.0

== Copyright
(C) 2002-2020 Daniel J. Berger
(C) 2002-2023 Daniel J. Berger
All Rights Reserved

== Warranty
Expand Down
2 changes: 1 addition & 1 deletion lib/sys/uname.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Sys
class Uname
# The version of the sys-uname gem.
VERSION = '1.2.2'
VERSION = '1.2.3'
end

class Platform
Expand Down
2 changes: 1 addition & 1 deletion spec/sys_platform_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

RSpec.describe Sys::Platform do
example 'the VERSION constant is set to the expected value' do
expect(Sys::Platform::VERSION).to eql('1.2.2')
expect(Sys::Platform::VERSION).to eql('1.2.3')
expect(Sys::Platform::VERSION).to be_frozen
end

Expand Down
2 changes: 1 addition & 1 deletion spec/sys_uname_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

context 'universal singleton methods' do
example 'version constant is set to expected value' do
expect(Sys::Uname::VERSION).to eql('1.2.2')
expect(Sys::Uname::VERSION).to eql('1.2.3')
expect(Sys::Uname::VERSION).to be_frozen
end

Expand Down
5 changes: 3 additions & 2 deletions sys-uname.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require 'rubygems'

Gem::Specification.new do |spec|
spec.name = 'sys-uname'
spec.version = '1.2.2'
spec.version = '1.2.3'
spec.author = 'Daniel J. Berger'
spec.email = '[email protected]'
spec.homepage = 'http://github.com/djberg96/sys-uname'
Expand All @@ -27,7 +27,8 @@ Gem::Specification.new do |spec|
'documentation_uri' => 'https://github.com/djberg96/sys-uname/wiki',
'source_code_uri' => 'https://github.com/djberg96/sys-uname',
'wiki_uri' => 'https://github.com/djberg96/sys-uname/wiki',
'rubygems_mfa_required' => 'true'
'rubygems_mfa_required' => 'true',
'github_repo' => 'https://github.com/djberg96/sys-uname'
}

spec.description = <<-EOF
Expand Down

0 comments on commit 065899c

Please sign in to comment.