Skip to content

Commit 3488057

Browse files
committed
fix module name
1 parent 63c5cd9 commit 3488057

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Update Podfile to include the following:
9393
```
9494
use_frameworks!
9595
96-
pod 'YTKKeyValueStore_Swift', '~> 0.3.3'
96+
pod 'YTKKeyValueStore_Swift', '~> 0.3.4'
9797
```
9898

9999
Run `pod install`

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.3.3</string>
18+
<string>0.3.4</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,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = "YTKKeyValueStore_Swift"
3-
s.version = "0.3.3"
3+
s.version = "0.3.4"
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]" }
88
s.platform = :ios, '8.0'
9-
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.3.3" }
9+
s.source = { :git => "https://github.com/sgxiang/YTKKeyValueStore_Swift.git", :tag => "0.3.4" }
1010
s.source_files = "YTKKeyValueStore/*.swift"
1111
s.requires_arc = true
12-
s.module_name = 'YTKkeyValueStore'
12+
s.module_name = 'YTKKeyValueStore'
1313
s.dependency "SQLite.swift", "~> 0.9.2"
1414
end

0 commit comments

Comments
 (0)