Skip to content

Commit c1beee7

Browse files
committed
Prep for 1.5.2 release.
1 parent 2806bc8 commit c1beee7

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.5.2 - 4-Dec-2025
2+
* Reverted a change that was causing frozen string warnings in Ruby 3.4.x.
3+
Thanks go to Daniel Straßner for the report.
4+
* Fixed a potential warning in the wc method.
5+
* Updated the Rakefile to run specs with warnings enabled by default.
6+
17
## 1.5.1 - 27-Nov-2025
28
* Refactoring release.
39
* The wc('all') method now only does a single read instead of a double read.

lib/ptools.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class File
55
# The version of the ptools library.
6-
PTOOLS_VERSION = '1.5.1'.freeze
6+
PTOOLS_VERSION = '1.5.2'.freeze
77

88
# :stopdoc:
99

ptools.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require 'rbconfig'
22

33
Gem::Specification.new do |spec|
44
spec.name = 'ptools'
5-
spec.version = '1.5.1'
5+
spec.version = '1.5.2'
66
spec.license = 'Apache-2.0'
77
spec.author = 'Daniel J. Berger'
88
spec.email = '[email protected]'

spec/constants_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
let(:windows) { File::ALT_SEPARATOR }
1414

1515
example 'PTOOLS_VERSION constant is set to expected value' do
16-
expect(File::PTOOLS_VERSION).to eq('1.5.1')
16+
expect(File::PTOOLS_VERSION).to eq('1.5.2')
1717
expect(File::PTOOLS_VERSION.frozen?).to be true
1818
end
1919

0 commit comments

Comments
 (0)