Skip to content

Commit

Permalink
Prepare version 1.3.2 for release (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise authored Mar 25, 2024
1 parent 1a658e7 commit f710a37
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.3.2](https://github.com/nicklockwood/GZIP/releases/tag/1.3.2) (2024-03-25)

- Minimum deployment target for macOS is now 10.13
- Minimum deployment target for tvOS is now 11.0
- Updated podspec to reflect MIT license

## [1.3.1](https://github.com/nicklockwood/GZIP/releases/tag/1.3.1) (2023-09-19)

- Minimum deployment target for iOS is now 11.0.
Expand Down
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.3.1'
s.version = '1.3.2'
s.license = 'MIT'
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.3.1" }
s.source = { :git => "https://github.com/nicklockwood/GZIP.git", :tag => "1.3.2" }
s.source_files = 'GZIP/**/*.{h,m}'
s.library = 'z'
s.requires_arc = false
Expand Down
2 changes: 1 addition & 1 deletion GZIP/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.3.1</string>
<string>1.3.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion GZIP/Sources/NSData+GZIP.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// GZIP.h
//
// Version 1.3.1
// Version 1.3.2
//
// Created by Nick Lockwood on 03/06/2012.
// Copyright (C) 2012 Charcoal Design
Expand Down
2 changes: 1 addition & 1 deletion GZIP/Sources/NSData+GZIP.m
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// GZIP.m
//
// Version 1.3.1
// Version 1.3.2
//
// Created by Nick Lockwood on 03/06/2012.
// Copyright (C) 2012 Charcoal Design
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Installation

The simplest way to install GZIP is to use CocoaPods, by adding the following to your Podfile:

pod 'GZIP', '~> 1.3.1'
pod 'GZIP', '~> 1.3.2'

Alternatively you can use Carthage, or if you prefer to install manually, drag the GZIP.xcodeproj into your project or workspace and include GZIP.framework under the linked libraries in your target.

Expand Down

0 comments on commit f710a37

Please sign in to comment.