Skip to content

Commit

Permalink
Bump project version to 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
witekbobrowski committed Jul 1, 2018
1 parent 93b34f9 commit f26fed0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
11 changes: 7 additions & 4 deletions EPUBKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "EPUBKit"
s.version = "0.2.2"
s.version = "0.3.0"
s.summary = "📚 A simple swift library for parsing EPUB documents."
s.description = <<-DESC
EPUBKit is a lightweight library designed for parsing EPUB documents.
Expand All @@ -10,13 +10,16 @@ Pod::Spec.new do |s|
s.license = "MIT"
s.author = { "witekbobrowski" => "witek@bobrowski.com.pl" }
s.social_media_url = "https://github.com/witekbobrowski"
s.platform = :ios, '10.0'
s.swift_version = '4.0'
s.source = { :git => "https://github.com/witekbobrowski/EPUBKit.git", :tag => "0.2.2" }
s.swift_version = '4.1'
s.source = { :git => "https://github.com/witekbobrowski/EPUBKit.git", :tag => "0.3.0" }
s.source_files = [
'EPUBKit/*.{h,swift}',
'EPUBKit/**/*.swift',
]

spec.ios.deployment_target = '10.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
s.libraries = "z"
s.dependency 'Zip'
s.dependency 'AEXML'
Expand Down
8 changes: 4 additions & 4 deletions EPUBKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@
SKIP_INSTALL = YES;
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 11.4;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Release;
};
Expand Down Expand Up @@ -970,7 +970,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 11.4;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
Expand All @@ -997,7 +997,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MACOSX_DEPLOYMENT_TARGET = 10.10;
PRODUCT_BUNDLE_IDENTIFIER = "com.bobrowski.EPUBKit-macOS";
PRODUCT_NAME = EPUBKit;
SDKROOT = macosx;
Expand Down Expand Up @@ -1036,7 +1036,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_BUNDLE_IDENTIFIER = "com.bobrowski.EPUBKit-macOS";
PRODUCT_NAME = EPUBKit;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</p>
<p align=center>
<a href="https://swift.org"><img alt="Swift" src="https://img.shields.io/badge/Swift-4.1-orange.svg"></a>
<a href="https://cocoapods.org/pods/EPUBKit"><img alt="CocoaPods" src="https://img.shields.io/badge/pod-0.2.2-blue.svg"></a>
<a href="https://cocoapods.org/pods/EPUBKit"><img alt="CocoaPods" src="https://img.shields.io/badge/pod-0.3.0-blue.svg"></a>
<a href="https://github.com/Carthage/Carthage"><img alt="Carthage" src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg"></a>
<a href=""><img alt="https://github.com/apple/swift-package-manager" src="https://img.shields.io/badge/SPM-compatible-orange.svg"></a>
<a><img alt="Platforms" src="https://img.shields.io/badge/platform-iOS | macOS | tvOS-lightgray.svg"></a>
Expand All @@ -23,19 +23,19 @@ __Note:__ This library is still in its early stages! I will experiment and chang
#### CocoaPods
Add the following to your `Podfile`:
```
pod 'EPUBKit', '~> 0.2.2'
pod 'EPUBKit', '~> 0.3.0'
```

#### Carthage
Add to `Cartfile`:
```
github "witekbobrowski/EPUBKit" ~> 0.2.2
github "witekbobrowski/EPUBKit" ~> 0.3.0
```

#### Swift Package Manager
Add to `Package.swift`:
```swift
.Package(url: "https://github.com/witekbobrowski/EPUBKit.git", from: "0.2.2")
.Package(url: "https://github.com/witekbobrowski/EPUBKit.git", from: "0.3.0")
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.2</string>
<string>0.3.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit f26fed0

Please sign in to comment.