Skip to content

Commit

Permalink
Add changes for 1.3.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Nov 19, 2024
1 parent 6504f1f commit 52c4a34
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.3.1 - 19-Nov-2024
* Remove a useless ostruct require. Thanks go to Koichi Ito for the spot and patch.

## 1.3.0 - 10-Jun-2024
* Added DragonflyBSD support.
* Removed Solaris support, it's dead.
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.3.0'
VERSION = '1.3.1'
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.3.0')
expect(Sys::Platform::VERSION).to eql('1.3.1')
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.3.0')
expect(Sys::Uname::VERSION).to eql('1.3.1')
expect(Sys::Uname::VERSION).to be_frozen
end

Expand Down
2 changes: 1 addition & 1 deletion 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.3.0'
spec.version = '1.3.1'
spec.author = 'Daniel J. Berger'
spec.email = '[email protected]'
spec.homepage = 'http://github.com/djberg96/sys-uname'
Expand Down

0 comments on commit 52c4a34

Please sign in to comment.