Skip to content

Commit

Permalink
Version bump to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sgxiang committed May 15, 2017
1 parent b188c9a commit 3128357
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ objc version :https://github.com/yuantiku/YTKKeyValueStore

## Requirements

- iOS 8.0+
- iOS 9.0+
- Xcode 8.0
- Swift 3.0

Expand Down Expand Up @@ -72,7 +72,7 @@ arrayValue : return Array<AnyObject>?

Update Cartfile to include the following:
```
github "sgxiang/YTKKeyValueStore_Swift" ~> 0.4.1
github "sgxiang/YTKKeyValueStore_Swift" ~> 0.4.2
```

Run `carthage update` and [add the appropriate framework][Carthage Usage].
Expand All @@ -86,7 +86,7 @@ Update Podfile to include the following:
```ruby
use_frameworks!

pod 'YTKKeyValueStore_Swift', '~> 0.4.1'
pod 'YTKKeyValueStore_Swift', '~> 0.4.2'
```

Run `pod install`
Expand Down
2 changes: 1 addition & 1 deletion Vendor/SQLite.swift
4 changes: 2 additions & 2 deletions YTKKeyValueStore.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = YTKKeyValueStore/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.sgxiang.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -531,7 +531,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = YTKKeyValueStore/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.sgxiang.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion YTKKeyValueStore/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>0.4.1</string>
<string>0.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions YTKKeyValueStore_Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "YTKKeyValueStore_Swift"
s.version = "0.4.1"
s.version = "0.4.2"
s.summary = "A simple Key-Value storage tool, using Sqlite as backend."
s.homepage = "https://github.com/sgxiang/YTKKeyValueStore_Swift"
s.license = "MIT"
s.author = { "sgxiang" => "[email protected]" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.4.1" }
s.platform = :ios, '9.0'
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.4.2" }
s.source_files = "YTKKeyValueStore/*.swift"
s.requires_arc = true
s.module_name = 'YTKKeyValueStore'
Expand Down

0 comments on commit 3128357

Please sign in to comment.