Skip to content

Commit

Permalink
Version bump, update changelog, update specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Jul 22, 2021
1 parent 47c0045 commit 724d8cd
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.4.2 - 22-Jul-2021
* Fixed support for 32-bit Linux. Thanks go to ciprianbadescu for the spot.

## 1.4.1 - 30-Dec-2020
* Fix an FFI function declaration bug for Big Sur and later on Mac. Thanks go
to Roman Gaufman for the spot and Martins Polakovs for testing.
Expand Down
2 changes: 1 addition & 1 deletion lib/sys/filesystem.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Sys
class Filesystem
# The version of the sys-filesystem library
VERSION = '1.4.1'.freeze
VERSION = '1.4.2'.freeze
end
end

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

example "version number is set to the expected value" do
expect(Sys::Filesystem::VERSION).to eq('1.4.1')
expect(Sys::Filesystem::VERSION).to eq('1.4.2')
expect(Sys::Filesystem::VERSION).to be_frozen
end

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

example "version number is set to the expected value" do
expect(Sys::Filesystem::VERSION).to eq('1.4.1')
expect(Sys::Filesystem::VERSION).to eq('1.4.2')
expect(Sys::Filesystem::VERSION).to be_frozen
end

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

0 comments on commit 724d8cd

Please sign in to comment.