diff --git a/.travis.yml b/.travis.yml index 450349b2..42abaca1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: ruby sudo: false cache: bundler rvm: - - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.0 diff --git a/Changelog.md b/Changelog.md index f90ff732..262ee69c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,15 @@ +1.1.7 +===== + +* Fix UTF-8 support for comments +* `Zip.sort_entries` working for zip output +* Prevent tempfile path from being unlinked by garbage collection +* NTFS Extra Field (0x000a) support +* Use String#tr instead of String#gsub +* Ability to not show warning about incorrect date +* Be smarter about handling buffer file modes. +* Support for Traditional Encryption (ZipCrypto) + 1.1.6 ===== diff --git a/lib/zip/version.rb b/lib/zip/version.rb index 1e11ae71..46b29d4d 100644 --- a/lib/zip/version.rb +++ b/lib/zip/version.rb @@ -1,3 +1,3 @@ module Zip - VERSION = '1.1.6' + VERSION = '1.1.7' end