Skip to content

Commit

Permalink
Version bump, add .gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Dec 30, 2020
1 parent 5c45ca0 commit d3168b0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gemfile.lock
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.0'.freeze
VERSION = '1.4.1'.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.0')
expect(Sys::Filesystem::VERSION).to eq('1.4.1')
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.0')
expect(Sys::Filesystem::VERSION).to eq('1.4.1')
expect(Sys::Filesystem::VERSION).to be_frozen
end

Expand Down
4 changes: 2 additions & 2 deletions 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.0'
spec.version = '1.4.1'
spec.author = 'Daniel J. Berger'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/djberg96/sys-filesystem'
Expand All @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.metadata = {
'homepage_uri' => 'https://github.com/djberg96/sys-filesystem',
'bug_tracker_uri' => 'https://github.com/djberg96/sys-filesystem/issues',
'changelog_uri' => 'https://github.com/djberg96/sys-filesystem/blob/ffi/CHANGES.rdoc',
'changelog_uri' => 'https://github.com/djberg96/sys-filesystem/blob/ffi/CHANGES.md',
'documentation_uri' => 'https://github.com/djberg96/sys-filesystem/wiki',
'source_code_uri' => 'https://github.com/djberg96/sys-filesystem',
'wiki_uri' => 'https://github.com/djberg96/sys-filesystem/wiki'
Expand Down

0 comments on commit d3168b0

Please sign in to comment.