From 2d0d3f39222b3dea1bf2c8d4034887d8c2b95e7e Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Mon, 3 Jul 2017 08:37:36 +0100 Subject: [PATCH] Updated for 1.2.1 release --- CHANGELOG.md | 45 +++++++++++ GZIP.podspec | 4 +- .../xcshareddata/WorkspaceSettings.xcsettings | 8 ++ .../xcschemes/GZIP-watchOS copy.xcscheme | 80 ------------------- GZIP/NSData+GZIP.h | 2 +- GZIP/NSData+GZIP.m | 2 +- README.md | 43 ---------- 7 files changed, 57 insertions(+), 127 deletions(-) create mode 100755 CHANGELOG.md create mode 100644 GZIP.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings delete mode 100644 GZIP.xcodeproj/xcshareddata/xcschemes/GZIP-watchOS copy.xcscheme diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100755 index 0000000..8bc9f08 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,45 @@ +# Change Log + +## [1.2.1](https://github.com/nicklockwood/GZIP/releases/tag/1.2.1) (2017-07-03) + +- Fixed incorrect case in header import + +## [1.2](https://github.com/nicklockwood/GZIP/releases/tag/1.2) (2017-05-18) + +- Removed dlopen, as Apple have begun rejecting apps that use it. +- Minimum deployment target is now iOS 8.0. +- Added watchOS / tvOS support. +- Added Carthage support. + +## [1.1.1](https://github.com/nicklockwood/GZIP/releases/tag/1.1.1) (2015-07-24) + +- Fixed crash on iOS 9. +- Added performance tests. + +## [1.1](https://github.com/nicklockwood/GZIP/releases/tag/1.1) (2015-07-17) + +- Added `isGzippedData` method. +- GZIP will no longer re-encode already-gzipped data, nor try (and fail) to decode ungzipped data. +- GZIP now uses dlopen to load the libz.dylib at runtime, so there's no need to include it manually in your project. +- Fixed warnings and errors on Xcode 7 + +## [1.0.3](https://github.com/nicklockwood/GZIP/releases/tag/1.0.3) (2014-07-02) + +- Fixed new warnings in Xcode 6 +- Added Travis CI support + +## [1.0.2](https://github.com/nicklockwood/GZIP/releases/tag/1.0.2) (2013-12-24) + +- Now complies with -Weverything warning level + +## [1.0.1](https://github.com/nicklockwood/GZIP/releases/tag/1.0.1) (2013-09-25) + +- Added podspec +- Renamed source files +- Verified compliance with iOS 7 / Mac OS 10.8 +- Verified compliance with -Wextra warning level + + +## [1.0](https://github.com/nicklockwood/GZIP/releases/tag/1.0) (2012-04-06) + +- First release diff --git a/GZIP.podspec b/GZIP.podspec index b1cccdb..1759579 100644 --- a/GZIP.podspec +++ b/GZIP.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'GZIP' - s.version = '1.2' + s.version = '1.2.1' s.license = 'zlib' s.summary = 'GZIP is category on NSData that provides simple gzip compression and decompression functionality.' s.homepage = 'https://github.com/nicklockwood/GZIP' s.author = { "Nick Lockwood" => "support@charcoaldesign.co.uk" } - s.source = { :git => "https://github.com/nicklockwood/GZIP.git", :tag => "1.2" } + s.source = { :git => "https://github.com/nicklockwood/GZIP.git", :tag => "1.2.1" } s.source_files = 'GZIP/*.{h,m}' s.library = 'z' s.requires_arc = false diff --git a/GZIP.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/GZIP.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..08de0be --- /dev/null +++ b/GZIP.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded + + + diff --git a/GZIP.xcodeproj/xcshareddata/xcschemes/GZIP-watchOS copy.xcscheme b/GZIP.xcodeproj/xcshareddata/xcschemes/GZIP-watchOS copy.xcscheme deleted file mode 100644 index cad88fd..0000000 --- a/GZIP.xcodeproj/xcshareddata/xcschemes/GZIP-watchOS copy.xcscheme +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/GZIP/NSData+GZIP.h b/GZIP/NSData+GZIP.h index 8514f26..080ffe8 100644 --- a/GZIP/NSData+GZIP.h +++ b/GZIP/NSData+GZIP.h @@ -1,7 +1,7 @@ // // GZIP.h // -// Version 1.2 +// Version 1.2.1 // // Created by Nick Lockwood on 03/06/2012. // Copyright (C) 2012 Charcoal Design diff --git a/GZIP/NSData+GZIP.m b/GZIP/NSData+GZIP.m index 823bc02..06a469b 100644 --- a/GZIP/NSData+GZIP.m +++ b/GZIP/NSData+GZIP.m @@ -1,7 +1,7 @@ // // GZIP.m // -// Version 1.2 +// Version 1.2.1 // // Created by Nick Lockwood on 03/06/2012. // Copyright (C) 2012 Charcoal Design diff --git a/README.md b/README.md index e95f140..2d1da19 100644 --- a/README.md +++ b/README.md @@ -57,46 +57,3 @@ This method will unzip data that was compressed using the deflate algorithm and - (BOOL)isGzippedData; This method will return YES if the data is gzip-encoded. - - -Release Notes --------------- - -Version 1.2 - -- Removed dlopen, as Apple have begun rejecting apps that use it. -- Minimum deployment target is now iOS 8.0. -- Added watchOS / tvOS support. -- Added Carthage support. - -Version 1.1.1 - -- Fixed crash on iOS 9. -- Added performance tests. - -Version 1.1 - -- Added `isGzippedData` method. -- GZIP will no longer re-encode already-gzipped data, nor try (and fail) to decode ungzipped data. -- GZIP now uses dlopen to load the libz.dylib at runtime, so there's no need to include it manually in your project. -- Fixed warnings and errors on Xcode 7 - -Version 1.0.3 - -- Fixed new warnings in Xcode 6 -- Added Travis CI support - -Version 1.0.2 - -- Now complies with -Weverything warning level - -Version 1.0.1 - -- Added podspec -- Renamed source files -- Verified compliance with iOS 7 / Mac OS 10.8 -- Verified compliance with -Wextra warning level - -Version 1.0 - -- Initial release. \ No newline at end of file