File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 1.5.1 - 27-Nov-2025
2+ * Refactoring release.
3+ * The wc('all') method now only does a single read instead of a double read.
4+ * The nl_convert method simplified to use the block form of File.open.
5+ * More consistent binary encoding calls.
6+ * Some magic numbers were replaced with constants.
7+ * Specs run in documentation mode.
8+
19## 1.5.0 - 5-Dec-2022
210* Change license to Apache-2.0.
311* Altered the File.binary? method. It no longer accepts a second argument,
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.0 ' . freeze
6+ PTOOLS_VERSION = '1.5.1 ' . 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.0 '
5+ spec . version = '1.5.1 '
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.0 ' )
16+ expect ( File ::PTOOLS_VERSION ) . to eq ( '1.5.1 ' )
1717 expect ( File ::PTOOLS_VERSION . frozen? ) . to be true
1818 end
1919
You can’t perform that action at this time.
0 commit comments