Skip to content

Commit

Permalink
Merge f42827e into 666fb8c
Browse files Browse the repository at this point in the history
  • Loading branch information
jdleesmiller committed Feb 1, 2020
2 parents 666fb8c + f42827e commit 93a4efa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
@@ -1,5 +1,9 @@
# X.X.X (Next)

# 2.2.0 (2020-02-01)

- Add support for decompression plugin gems [#427](https://github.com/rubyzip/rubyzip/pull/427)

# 2.1.0 (2020-01-25)

- Fix (at least partially) the `restore_times` and `restore_permissions` options to `Zip::File.new` [#413](https://github.com/rubyzip/rubyzip/pull/413)
Expand Down
2 changes: 1 addition & 1 deletion lib/zip/inflater.rb
Expand Up @@ -35,7 +35,7 @@ def produce_input
retried += 1
retry
end
rescue Zlib::Error => e
rescue Zlib::Error
raise(::Zip::DecompressionError, 'zlib error while inflating')
end

Expand Down
2 changes: 1 addition & 1 deletion lib/zip/version.rb
@@ -1,3 +1,3 @@
module Zip
VERSION = '2.1.0'
VERSION = '2.2.0'
end

0 comments on commit 93a4efa

Please sign in to comment.