diff --git a/Changelog.md b/Changelog.md index 1ea1bb0b..5131d210 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,7 @@ # X.X.X (Next) +# 2.3.0 (2020-03-14) + - Fix frozen string literal error [#431](https://github.com/rubyzip/rubyzip/pull/431) - Set `OutputStream.write_buffer`'s buffer to binmode [#439](https://github.com/rubyzip/rubyzip/pull/439) - Upgrade rubocop and fix various linting complaints [#437](https://github.com/rubyzip/rubyzip/pull/437) [#440](https://github.com/rubyzip/rubyzip/pull/440) diff --git a/lib/zip/version.rb b/lib/zip/version.rb index 0955ae03..0b20c214 100644 --- a/lib/zip/version.rb +++ b/lib/zip/version.rb @@ -1,3 +1,3 @@ module Zip - VERSION = '2.2.0' + VERSION = '2.3.0' end