Skip to content

Commit

Permalink
Add changes for 1.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Sep 30, 2024
1 parent 1e02a7c commit 16147e0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.2 - 30-Sep-2024
* Forgot to switch mkmf-lite from a dev dependency to a runtime dependency.
Thanks go to Thomas Langé for the spot and patch.

## 1.5.1 - 29-Sep-2024
* Add the f_type struct member to the Statvfs struct for Linux. This was added
at some point in the Linux lifecycle, though may still be blank depending on
Expand Down
2 changes: 1 addition & 1 deletion lib/sys/filesystem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module Sys
# return objects of other types. Do not instantiate.
class Filesystem
# The version of the sys-filesystem library
VERSION = '1.5.1'
VERSION = '1.5.2'

# Stat objects are returned by the Sys::Filesystem.stat method. Here
# we're adding universal methods.
Expand Down
2 changes: 1 addition & 1 deletion spec/sys_filesystem_shared.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

RSpec.shared_examples Sys::Filesystem do
example 'version number is set to the expected value' do
expect(Sys::Filesystem::VERSION).to eq('1.5.1')
expect(Sys::Filesystem::VERSION).to eq('1.5.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.5.1'
spec.version = '1.5.2'
spec.author = 'Daniel J. Berger'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/djberg96/sys-filesystem'
Expand Down

0 comments on commit 16147e0

Please sign in to comment.