Skip to content

Commit

Permalink
update changelog and spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mattconnolly committed Aug 7, 2013
1 parent cc14fde commit 43d53f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions ZipArchive.podspec
Original file line number Diff line number Diff line change
@@ -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".
Expand All @@ -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" => "[email protected]", "Matt Connolly" => "[email protected]" }
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'
Expand Down

0 comments on commit 43d53f1

Please sign in to comment.