File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed
Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 33
44class 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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ require 'rbconfig'
22
33Gem ::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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments