Skip to content

Commit 3128357

Browse files
committed
Version bump to 0.4.2
1 parent b188c9a commit 3128357

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ objc version :https://github.com/yuantiku/YTKKeyValueStore
99

1010
## Requirements
1111

12-
- iOS 8.0+
12+
- iOS 9.0+
1313
- Xcode 8.0
1414
- Swift 3.0
1515

@@ -72,7 +72,7 @@ arrayValue : return Array<AnyObject>?
7272

7373
Update Cartfile to include the following:
7474
```
75-
github "sgxiang/YTKKeyValueStore_Swift" ~> 0.4.1
75+
github "sgxiang/YTKKeyValueStore_Swift" ~> 0.4.2
7676
```
7777

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

89-
pod 'YTKKeyValueStore_Swift', '~> 0.4.1'
89+
pod 'YTKKeyValueStore_Swift', '~> 0.4.2'
9090
```
9191

9292
Run `pod install`

Vendor/SQLite.swift

YTKKeyValueStore.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@
509509
DYLIB_INSTALL_NAME_BASE = "@rpath";
510510
INFOPLIST_FILE = YTKKeyValueStore/Info.plist;
511511
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
512-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
512+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
513513
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
514514
PRODUCT_BUNDLE_IDENTIFIER = "com.sgxiang.$(PRODUCT_NAME:rfc1034identifier)";
515515
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -531,7 +531,7 @@
531531
DYLIB_INSTALL_NAME_BASE = "@rpath";
532532
INFOPLIST_FILE = YTKKeyValueStore/Info.plist;
533533
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
534-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
534+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
535535
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
536536
PRODUCT_BUNDLE_IDENTIFIER = "com.sgxiang.$(PRODUCT_NAME:rfc1034identifier)";
537537
PRODUCT_NAME = "$(TARGET_NAME)";

YTKKeyValueStore/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.4.1</string>
18+
<string>0.4.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

YTKKeyValueStore_Swift.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "YTKKeyValueStore_Swift"
3-
s.version = "0.4.1"
3+
s.version = "0.4.2"
44
s.summary = "A simple Key-Value storage tool, using Sqlite as backend."
55
s.homepage = "https://github.com/sgxiang/YTKKeyValueStore_Swift"
66
s.license = "MIT"
77
s.author = { "sgxiang" => "[email protected]" }
8-
s.platform = :ios, '8.0'
9-
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.4.1" }
8+
s.platform = :ios, '9.0'
9+
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.4.2" }
1010
s.source_files = "YTKKeyValueStore/*.swift"
1111
s.requires_arc = true
1212
s.module_name = 'YTKKeyValueStore'

0 commit comments

Comments
 (0)