Skip to content

Commit 16897d3

Browse files
committed
Release 1.0.0
1 parent b888501 commit 16897d3

File tree

10 files changed

+25
-23
lines changed

10 files changed

+25
-23
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Zip/minizip/* linguist-vendored
1+
Zip/minizip/* linguist-vendored

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
4.0

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
osx_image: xcode8
1+
osx_image: xcode9
22
language: objective-c
33
env:
44
global:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
55

66
# Zip
7-
A Swift 3.0 framework for zipping and unzipping files. Simple and quick to use. Built on top of [minizip](https://github.com/nmoinvaz/minizip).
7+
A Swift 4.0 framework for zipping and unzipping files. Simple and quick to use. Built on top of [minizip](https://github.com/nmoinvaz/minizip).
88

99
## Usage
1010

@@ -60,7 +60,7 @@ Zip.addCustomFileExtension("file-extension-here")
6060
### Setting up with [CocoaPods](http://cocoapods.org/?q=Zip)
6161
```ruby
6262
source 'https://github.com/CocoaPods/Specs.git'
63-
pod 'Zip', '~> 0.8'
63+
pod 'Zip', '~> 1.0'
6464
```
6565

6666
### Setting up with Carthage

Zip.podspec

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "Zip"
11-
s.version = "0.8.0"
11+
s.version = "1.0.0"
1212
s.summary = "Zip and unzip files in Swift."
1313

1414
# This description is used to generate tags and improve search results.
@@ -33,6 +33,8 @@ Pod::Spec.new do |s|
3333
s.osx.deployment_target = '10.9'
3434
s.requires_arc = true
3535

36+
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
37+
3638
s.source_files = 'Zip/*.{swift,h}', 'Zip/minizip/*.{c,h}', 'Zip/minizip/aes/*.{c,h}'
3739
s.public_header_files = 'Zip/*.h'
3840
s.pod_target_xcconfig = {'SWIFT_INCLUDE_PATHS' => '$(SRCROOT)/Zip/Zip/minizip/**','LIBRARY_SEARCH_PATHS' => '$(SRCROOT)/Zip/Zip/'}

Zip.xcodeproj/project.pbxproj

+10-10
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@
510510
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
511511
DEFINES_MODULE = YES;
512512
DYLIB_COMPATIBILITY_VERSION = 1;
513-
DYLIB_CURRENT_VERSION = 10;
513+
DYLIB_CURRENT_VERSION = 11;
514514
DYLIB_INSTALL_NAME_BASE = "@rpath";
515515
INFOPLIST_FILE = "Zip/Info-tvOS.plist";
516516
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -536,7 +536,7 @@
536536
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
537537
DEFINES_MODULE = YES;
538538
DYLIB_COMPATIBILITY_VERSION = 1;
539-
DYLIB_CURRENT_VERSION = 10;
539+
DYLIB_CURRENT_VERSION = 11;
540540
DYLIB_INSTALL_NAME_BASE = "@rpath";
541541
INFOPLIST_FILE = "Zip/Info-tvOS.plist";
542542
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -559,10 +559,10 @@
559559
buildSettings = {
560560
CODE_SIGN_IDENTITY = "-";
561561
COMBINE_HIDPI_IMAGES = YES;
562-
CURRENT_PROJECT_VERSION = 10;
562+
CURRENT_PROJECT_VERSION = 11;
563563
DEFINES_MODULE = YES;
564564
DYLIB_COMPATIBILITY_VERSION = 1;
565-
DYLIB_CURRENT_VERSION = 10;
565+
DYLIB_CURRENT_VERSION = 11;
566566
DYLIB_INSTALL_NAME_BASE = "@rpath";
567567
FRAMEWORK_VERSION = A;
568568
INFOPLIST_FILE = Zip/Info.plist;
@@ -582,10 +582,10 @@
582582
buildSettings = {
583583
CODE_SIGN_IDENTITY = "-";
584584
COMBINE_HIDPI_IMAGES = YES;
585-
CURRENT_PROJECT_VERSION = 10;
585+
CURRENT_PROJECT_VERSION = 11;
586586
DEFINES_MODULE = YES;
587587
DYLIB_COMPATIBILITY_VERSION = 1;
588-
DYLIB_CURRENT_VERSION = 10;
588+
DYLIB_CURRENT_VERSION = 11;
589589
DYLIB_INSTALL_NAME_BASE = "@rpath";
590590
FRAMEWORK_VERSION = A;
591591
INFOPLIST_FILE = Zip/Info.plist;
@@ -659,7 +659,7 @@
659659
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
660660
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
661661
COPY_PHASE_STRIP = NO;
662-
CURRENT_PROJECT_VERSION = 10;
662+
CURRENT_PROJECT_VERSION = 11;
663663
DEBUG_INFORMATION_FORMAT = dwarf;
664664
ENABLE_STRICT_OBJC_MSGSEND = YES;
665665
ENABLE_TESTABILITY = YES;
@@ -717,7 +717,7 @@
717717
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
718718
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
719719
COPY_PHASE_STRIP = NO;
720-
CURRENT_PROJECT_VERSION = 10;
720+
CURRENT_PROJECT_VERSION = 11;
721721
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
722722
ENABLE_NS_ASSERTIONS = NO;
723723
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -749,7 +749,7 @@
749749
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
750750
DEFINES_MODULE = YES;
751751
DYLIB_COMPATIBILITY_VERSION = 1;
752-
DYLIB_CURRENT_VERSION = 10;
752+
DYLIB_CURRENT_VERSION = 11;
753753
DYLIB_INSTALL_NAME_BASE = "@rpath";
754754
INFOPLIST_FILE = Zip/Info.plist;
755755
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -772,7 +772,7 @@
772772
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
773773
DEFINES_MODULE = YES;
774774
DYLIB_COMPATIBILITY_VERSION = 1;
775-
DYLIB_CURRENT_VERSION = 10;
775+
DYLIB_CURRENT_VERSION = 11;
776776
DYLIB_INSTALL_NAME_BASE = "@rpath";
777777
INFOPLIST_FILE = Zip/Info.plist;
778778
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

Zip/Info-tvOS.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.0</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>10</string>
22+
<string>11</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

Zip/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.0</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>10</string>
22+
<string>11</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

ZipTests/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.0</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>10</string>
22+
<string>11</string>
2323
</dict>
2424
</plist>

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# **** Update me when new Xcode versions are released! ****
4-
PLATFORM="platform=iOS Simulator,OS=10.0,name=iPhone 7"
4+
PLATFORM="platform=iOS Simulator,OS=11.0,name=iPhone 8"
55
SDK="iphonesimulator10.0"
66

77

0 commit comments

Comments
 (0)