diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b844b14 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Gemfile.lock diff --git a/lib/sys/filesystem.rb b/lib/sys/filesystem.rb index 81b740b..f7fdbc3 100644 --- a/lib/sys/filesystem.rb +++ b/lib/sys/filesystem.rb @@ -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 diff --git a/spec/sys_filesystem_unix_spec.rb b/spec/sys_filesystem_unix_spec.rb index b523548..25a529a 100644 --- a/spec/sys_filesystem_unix_spec.rb +++ b/spec/sys_filesystem_unix_spec.rb @@ -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 diff --git a/spec/sys_filesystem_windows_spec.rb b/spec/sys_filesystem_windows_spec.rb index e90071b..f73ba0b 100644 --- a/spec/sys_filesystem_windows_spec.rb +++ b/spec/sys_filesystem_windows_spec.rb @@ -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 diff --git a/sys-filesystem.gemspec b/sys-filesystem.gemspec index 51cc4c5..90dadff 100644 --- a/sys-filesystem.gemspec +++ b/sys-filesystem.gemspec @@ -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 = 'djberg96@gmail.com' spec.homepage = 'https://github.com/djberg96/sys-filesystem' @@ -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'