From 43d53f14ad3465745317052b918febf1db935f43 Mon Sep 17 00:00:00 2001 From: Matt Connolly Date: Wed, 7 Aug 2013 22:01:23 +1000 Subject: [PATCH] update changelog and spec --- CHANGELOG.md | 2 +- ZipArchive.podspec | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a70f25c..2ce3030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 7 August 2013 * Fixes bug with folders in zipfiles. Pull request #20 (@lanbozhang) -* Adds "stringEncoding" property for specifying what character encoding to use for interpreting file names inside a zip file. +* Adds "stringEncoding" property for specifying what character encoding to use for interpreting file names inside a zip file. This is used for reading and writing zip files. This now defaults to UTF8, it was previously ASCII. ## Version 1.1.1 diff --git a/ZipArchive.podspec b/ZipArchive.podspec index bd66320..68abd51 100644 --- a/ZipArchive.podspec +++ b/ZipArchive.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "ZipArchive" - s.version = "1.1.1" - s.summary = "An Objective C class for zip/unzip on iPhone and Mac OSX." + s.version = "1.2.0" + s.summary = "An Objective C class for zip/unzip on iPhone and Mac OS X." s.description = <<-DESC ZipArchive is an Objective-C class to compress or uncompress zip files, which is base on open source code "MiniZip". @@ -10,7 +10,7 @@ It can be used for iPhone application development, and cocoa on Mac OSX as well. s.homepage = "https://github.com/mattconnolly/ZipArchive" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Unknown Name" => "acsolu@gmail.com", "Matt Connolly" => "matt.connolly@me.com" } - s.source = { :git => 'https://github.com/mattconnolly/ZipArchive.git', :tag => '1.1.1' } + s.source = { :git => 'https://github.com/mattconnolly/ZipArchive.git', :tag => '1.2.0' } s.source_files = '*.{h,m}', 'minizip/*.{h,c}' s.public_header_files = '*.h' s.library = 'z'