Skip to content

Commit 5946261

Browse files
committed
Prep 1.5.1 release.
1 parent fe4cad4 commit 5946261

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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,

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.0'.freeze
6+
PTOOLS_VERSION = '1.5.1'.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.0'
5+
spec.version = '1.5.1'
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.0')
16+
expect(File::PTOOLS_VERSION).to eq('1.5.1')
1717
expect(File::PTOOLS_VERSION.frozen?).to be true
1818
end
1919

0 commit comments

Comments
 (0)