From 0cbae14c76d698840f4c60e62bda6ce0f30e6f37 Mon Sep 17 00:00:00 2001 From: Alexander Simonov Date: Tue, 3 Feb 2015 00:00:09 +0200 Subject: [PATCH] Version bump --- .travis.yml | 1 - Changelog.md | 12 ++++++++++++ lib/zip/version.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 450349b..42abaca 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 f90ff73..262ee69 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 1e11ae7..46b29d4 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