Skip to content

Commit 7d16cbf

Browse files
committed
Prep for 1.5.0 release.
1 parent d10837a commit 7d16cbf

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.0 - 16-Feb-2026
2+
* The win32ole gem is now a dependency for Windows since it's no longer
3+
bundled with Ruby 4.x.
4+
15
## 1.4.1 - 1-Sep-2025
26
* Use memoist3 instead of memoist since the latter is unmaintained. Thanks
37
got to Matijs van Zuijlen for the suggestion.

doc/uname.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ https://github.com/djberg96/sys-uname
8080
Apache-2.0
8181

8282
== Copyright
83-
(C) 2002-2025 Daniel J. Berger
83+
(C) 2002-2026 Daniel J. Berger
8484
All Rights Reserved
8585

8686
== Warranty

lib/sys/uname.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Sys
44
class Uname
55
# The version of the sys-uname gem.
6-
VERSION = '1.4.1'
6+
VERSION = '1.5.0'
77
end
88

99
class Platform

spec/sys_platform_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
RSpec.describe Sys::Platform do
1111
example 'the VERSION constant is set to the expected value' do
12-
expect(Sys::Platform::VERSION).to eql('1.4.1')
12+
expect(Sys::Platform::VERSION).to eql('1.5.0')
1313
expect(Sys::Platform::VERSION).to be_frozen
1414
end
1515

spec/sys_uname_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
context 'universal singleton methods' do
2828
example 'version constant is set to expected value' do
29-
expect(Sys::Uname::VERSION).to eql('1.4.1')
29+
expect(Sys::Uname::VERSION).to eql('1.5.0')
3030
expect(Sys::Uname::VERSION).to be_frozen
3131
end
3232

sys-uname-1.5.0.gem

29 KB
Binary file not shown.

sys-uname.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require 'rubygems'
22

33
Gem::Specification.new do |spec|
44
spec.name = 'sys-uname'
5-
spec.version = '1.4.1'
5+
spec.version = '1.5.0'
66
spec.author = 'Daniel J. Berger'
77
spec.email = 'djberg96@gmail.com'
88
spec.homepage = 'http://github.com/djberg96/sys-uname'

0 commit comments

Comments
 (0)