Skip to content

Commit d43c80d

Browse files
committed
0.3.0
1 parent 3cf3d12 commit d43c80d

File tree

3 files changed

+25
-22
lines changed

3 files changed

+25
-22
lines changed

CocoaPods/Podfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- EFStorage (0.2.0):
3-
- EFStorage/Core (= 0.2.0)
4-
- EFStorage/KeychainAccess (= 0.2.0)
5-
- EFStorage/UserDefaults (= 0.2.0)
6-
- EFStorage/YYCache (= 0.2.0)
7-
- EFStorage/Core (0.2.0)
8-
- EFStorage/KeychainAccess (0.2.0):
2+
- EFStorage (0.3.0):
3+
- EFStorage/Core (= 0.3.0)
4+
- EFStorage/KeychainAccess (= 0.3.0)
5+
- EFStorage/UserDefaults (= 0.3.0)
6+
- EFStorage/YYCache (= 0.3.0)
7+
- EFStorage/Core (0.3.0)
8+
- EFStorage/KeychainAccess (0.3.0):
99
- EFStorage/Core
1010
- KeychainAccess (~> 3.2.0)
11-
- EFStorage/UserDefaults (0.2.0):
11+
- EFStorage/UserDefaults (0.3.0):
1212
- EFStorage/Core
13-
- EFStorage/YYCache (0.2.0):
13+
- EFStorage/YYCache (0.3.0):
1414
- EFStorage/Core
1515
- YYCache (~> 1.0.4)
1616
- KeychainAccess (3.2.0)
@@ -29,7 +29,7 @@ EXTERNAL SOURCES:
2929
:path: ".."
3030

3131
SPEC CHECKSUMS:
32-
EFStorage: 62ac02fe4f52d609261e89cc70df378f532c83f7
32+
EFStorage: 1d14c08cff3d8340a2bddd2c3921c38cffdb869b
3333
KeychainAccess: 3b1bf8a77eb4c6ea1ce9404c292e48f948954c6b
3434
YYCache: 8105b6638f5e849296c71f331ff83891a4942952
3535

EFStorage.podspec

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'EFStorage'
11-
s.version = '0.2.0'
11+
s.version = '0.3.0'
1212
s.summary = 'A Swifty storage solution.'
1313

1414
# This description is used to generate tags and improve search results.
@@ -17,24 +17,25 @@ Pod::Spec.new do |s|
1717
# * Write the description between the DESC delimiters below.
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

20-
s.description = <<-DESC
20+
s.description = <<-DESC
2121
EFStorage is an easy way to store anything anywhere.
2222
DESC
2323

24-
s.homepage = 'https://github.com/EFPrefix/EFStorage'
24+
s.homepage = 'https://github.com/EFPrefix/EFStorage'
2525
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
26-
s.license = { :type => 'MIT', :file => 'LICENSE' }
27-
s.author = { 'ApolloZhu' => 'public-apollonian@outlook.com' }
28-
s.source = { :git => 'https://github.com/EFPrefix/EFStorage.git', :tag => s.version.to_s }
29-
s.social_media_url = 'https://twitter.com/zhuzhiyu_'
26+
s.license = { :type => 'MIT', :file => 'LICENSE' }
27+
s.authors = { 'ApolloZhu' => 'public-apollonian@outlook.com',
28+
'EyreFree' => 'eyrefree@eyrefree.org' }
29+
s.source = { :git => 'https://github.com/EFPrefix/EFStorage.git', :tag => s.version.to_s }
30+
s.social_media_url = 'https://twitter.com/zhuzhiyu_'
3031

31-
s.ios.deployment_target = "8.0"
32-
s.osx.deployment_target = "10.9"
32+
s.ios.deployment_target = "8.0"
33+
s.osx.deployment_target = "10.9"
3334
s.watchos.deployment_target = "2.0"
34-
s.tvos.deployment_target = "9.0"
35+
s.tvos.deployment_target = "9.0"
3536

36-
s.swift_version = "5.1"
37-
s.source_files = 'Sources/**/*.swift'
37+
s.swift_version = "5.1"
38+
s.source_files = 'Sources/**/*.swift'
3839
s.osx.exclude_files = 'Sources/EFStorageYYCache'
3940

4041
s.frameworks = 'Foundation'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ UserDefaults.efStorage.username = "OwO"
2121
* [@dynamicMemberLookup](https://github.com/EFPrefix/EFStorage/wiki/Usage#through-dynamicmemberlookup) | [动态成员查找](https://github.com/EFPrefix/EFStorage/wiki/用法#dynamicmemberlookup-动态成员查找)
2222
* [non-standard/default/shared storage](https://github.com/EFPrefix/EFStorage/wiki/Usage#non-default-container) | [非默认容器](https://github.com/EFPrefix/EFStorage/wiki/用法#放在其他什么地方吧)
2323
* [container/content type mix & match](https://github.com/EFPrefix/EFStorage/wiki/Usage#supported-containers) | [类型结合与转换](https://github.com/EFPrefix/EFStorage/wiki/用法#但是)
24+
* [storing custom types](https://github.com/EFPrefix/EFStorage/wiki/Usage#more-storables) | [存储更多类型](https://github.com/EFPrefix/EFStorage/wiki/用法#能放点其他的吗太能了)
25+
* [error handling](https://github.com/EFPrefix/EFStorage/wiki/Usage#assertion-failures) | [异常处理](https://github.com/EFPrefix/EFStorage/wiki/用法#我的程序炸了)
2426
* [Expand `EFStorage` to Support Your Data Store](https://github.com/EFPrefix/EFStorage/wiki/Extend) | [`EFStorage` 支持新的存储方案](https://github.com/EFPrefix/EFStorage/wiki/扩展)
2527

2628
## License

0 commit comments

Comments
 (0)