File tree Expand file tree Collapse file tree 7 files changed +9
-5
lines changed
Expand file tree Collapse file tree 7 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ https://github.com/djberg96/sys-uname
8080Apache-2.0
8181
8282== Copyright
83- (C) 2002-2025 Daniel J. Berger
83+ (C) 2002-2026 Daniel J. Berger
8484All Rights Reserved
8585
8686== Warranty
Original file line number Diff line number Diff line change 33module 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
Original file line number Diff line number Diff line change 99
1010RSpec . 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ require 'rubygems'
22
33Gem ::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'
You can’t perform that action at this time.
0 commit comments