Skip to content

Commit 932ea90

Browse files
committed
Update version number, README and Changelog for release.
1 parent 85ec84b commit 932ea90

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 3.0.1 (2025-08-08)
2+
3+
- Restore `Zip::File`'s `Enumerable` status. [#641](https://github.com/rubyzip/rubyzip/issues/641)
4+
- Escape filename pattern when matching in `Entry#name_safe?`. [#639](https://github.com/rubyzip/rubyzip/pull/639)
5+
- Eagerly require gem version. [#637](https://github.com/rubyzip/rubyzip/pull/637)
6+
- Fix direct `require` of `Entry` by requiring `constants`. [#636](https://github.com/rubyzip/rubyzip/pull/636)
7+
18
# 3.0.0 (2025-07-28)
29

310
- Fix de facto regression for input streams.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,11 +386,11 @@ You can set multiple settings at the same time by using a block:
386386

387387
Rubyzip is known to run on a number of platforms and under a number of different Ruby versions.
388388

389-
### Version 2.3.x
389+
### Version 2.4.x
390390

391-
Rubyzip 2.3 is known to work on MRI 2.4 to 3.4 on Linux and Mac, and JRuby and Truffleruby on Linux. There are known issues with Windows which have been fixed on the development branch. Please [let us know](https://github.com/rubyzip/rubyzip/pulls) if you know Rubyzip 2.3 works on a platform/Ruby combination not listed here, or [raise an issue](https://github.com/rubyzip/rubyzip/issues) if you see a failure where we think it should work.
391+
Rubyzip 2.4 is known to work on MRI 2.4 to 3.4 on Linux and Mac, and JRuby and Truffleruby on Linux. There are known issues with Windows which have been fixed on the development branch. Please [let us know](https://github.com/rubyzip/rubyzip/pulls) if you know Rubyzip 2.4 works on a platform/Ruby combination not listed here, or [raise an issue](https://github.com/rubyzip/rubyzip/issues) if you see a failure where we think it should work.
392392

393-
### Next (version 3.0.0)
393+
### Version 3.x
394394

395395
Please see the table below for what we think the current situation is. Note: an empty cell means "unknown", not "does not work".
396396

lib/zip/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Zip
4-
VERSION = '3.0.0'
4+
VERSION = '3.0.1'
55
end

0 commit comments

Comments
 (0)