Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ApolloZhu committed Sep 18, 2019
1 parent 3cf3d12 commit d43c80d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 22 deletions.
20 changes: 10 additions & 10 deletions CocoaPods/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PODS:
- EFStorage (0.2.0):
- EFStorage/Core (= 0.2.0)
- EFStorage/KeychainAccess (= 0.2.0)
- EFStorage/UserDefaults (= 0.2.0)
- EFStorage/YYCache (= 0.2.0)
- EFStorage/Core (0.2.0)
- EFStorage/KeychainAccess (0.2.0):
- EFStorage (0.3.0):
- EFStorage/Core (= 0.3.0)
- EFStorage/KeychainAccess (= 0.3.0)
- EFStorage/UserDefaults (= 0.3.0)
- EFStorage/YYCache (= 0.3.0)
- EFStorage/Core (0.3.0)
- EFStorage/KeychainAccess (0.3.0):
- EFStorage/Core
- KeychainAccess (~> 3.2.0)
- EFStorage/UserDefaults (0.2.0):
- EFStorage/UserDefaults (0.3.0):
- EFStorage/Core
- EFStorage/YYCache (0.2.0):
- EFStorage/YYCache (0.3.0):
- EFStorage/Core
- YYCache (~> 1.0.4)
- KeychainAccess (3.2.0)
Expand All @@ -29,7 +29,7 @@ EXTERNAL SOURCES:
:path: ".."

SPEC CHECKSUMS:
EFStorage: 62ac02fe4f52d609261e89cc70df378f532c83f7
EFStorage: 1d14c08cff3d8340a2bddd2c3921c38cffdb869b
KeychainAccess: 3b1bf8a77eb4c6ea1ce9404c292e48f948954c6b
YYCache: 8105b6638f5e849296c71f331ff83891a4942952

Expand Down
25 changes: 13 additions & 12 deletions EFStorage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'EFStorage'
s.version = '0.2.0'
s.version = '0.3.0'
s.summary = 'A Swifty storage solution.'

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

s.description = <<-DESC
s.description = <<-DESC
EFStorage is an easy way to store anything anywhere.
DESC

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

s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"

s.swift_version = "5.1"
s.source_files = 'Sources/**/*.swift'
s.swift_version = "5.1"
s.source_files = 'Sources/**/*.swift'
s.osx.exclude_files = 'Sources/EFStorageYYCache'

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

## License
Expand Down

0 comments on commit d43c80d

Please sign in to comment.