Skip to content

Commit

Permalink
Updated for 1.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Jul 3, 2017
1 parent f1c1102 commit 2d0d3f3
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 127 deletions.
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions GZIP.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<false/>
</dict>
</plist>
80 changes: 0 additions & 80 deletions GZIP.xcodeproj/xcshareddata/xcschemes/GZIP-watchOS copy.xcscheme

This file was deleted.

2 changes: 1 addition & 1 deletion GZIP/NSData+GZIP.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion GZIP/NSData+GZIP.m
Original file line number Diff line number Diff line change
@@ -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
Expand Down
43 changes: 0 additions & 43 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 2d0d3f3

Please sign in to comment.