Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ApolloZhu committed Aug 20, 2019
1 parent b2102e8 commit d7d8f78
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 22 deletions.
2 changes: 1 addition & 1 deletion 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.0.2'
s.version = '0.1.1'
s.summary = 'Store anything anywhere with ease.'

# This description is used to generate tags and improve search results.
Expand Down
8 changes: 4 additions & 4 deletions EFStorage.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1509,12 +1509,12 @@
"OBJ_52" = {
isa = "PBXGroup";
children = (
"KeychainAccess::KeychainAccess::Product",
"EFStorage::EFStorageCore::Product",
"EFStorage::EFStorageKeychainAccess::Product",
"EFStorage::EFStorageTests::Product",
"YYCache::YYCache::Product",
"EFStorage::EFStorageYYCache::Product",
"EFStorage::EFStorageTests::Product",
"EFStorage::EFStorageKeychainAccess::Product",
"KeychainAccess::KeychainAccess::Product",
"EFStorage::EFStorageCore::Product",
"EFStorage::EFStorageUserDefaults::Product"
);
name = "Products";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BuildableName = "'lib$(TARGET_NAME)'"
BlueprintName = "EFStorageYYCache"
BlueprintName = "EFStorageCore"
ReferencedContainer = "container:EFStorage.xcodeproj">
</BuildableReference>
</BuildActionEntry>
Expand All @@ -22,15 +22,15 @@
<BuildableReference
BuildableIdentifier = "primary"
BuildableName = "'lib$(TARGET_NAME)'"
BlueprintName = "EFStorageCore"
BlueprintName = "EFStorageUserDefaults"
ReferencedContainer = "container:EFStorage.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry buildForTesting = "YES" buildForRunning = "YES" buildForProfiling = "YES" buildForArchiving = "YES" buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BuildableName = "'lib$(TARGET_NAME)'"
BlueprintName = "EFStorageUserDefaults"
BlueprintName = "EFStorageYYCache"
ReferencedContainer = "container:EFStorage.xcodeproj">
</BuildableReference>
</BuildActionEntry>
Expand Down
15 changes: 11 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ let package = Package(
products: [
.library(
name: "EFStorage",
targets: ["EFStorageCore", "EFStorageKeychainAccess",
"EFStorageUserDefaults", "EFStorageYYCache"]),
targets: [
"EFStorageCore",
"EFStorageKeychainAccess",
"EFStorageUserDefaults",
"EFStorageYYCache",
]),
.library(
name: "EFStorageCore",
targets: ["EFStorageCore"]),
Expand Down Expand Up @@ -42,7 +46,10 @@ let package = Package(
dependencies: ["EFStorageCore", "YYCache"]),
.testTarget(
name: "EFStorageTests",
dependencies: ["EFStorageCore", "EFStorageKeychainAccess",
"EFStorageUserDefaults"]),
dependencies: [
"EFStorageCore",
"EFStorageKeychainAccess",
"EFStorageUserDefaults",
]),
]
)
20 changes: 10 additions & 10 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PODS:
- EFStorage (0.0.2):
- EFStorage/Core (= 0.0.2)
- EFStorage/KeychainAccess (= 0.0.2)
- EFStorage/UserDefaults (= 0.0.2)
- EFStorage/YYCache (= 0.0.2)
- EFStorage/Core (0.0.2)
- EFStorage/KeychainAccess (0.0.2):
- EFStorage (0.1.1):
- EFStorage/Core (= 0.1.1)
- EFStorage/KeychainAccess (= 0.1.1)
- EFStorage/UserDefaults (= 0.1.1)
- EFStorage/YYCache (= 0.1.1)
- EFStorage/Core (0.1.1)
- EFStorage/KeychainAccess (0.1.1):
- EFStorage/Core
- KeychainAccess (~> 3.2.0)
- EFStorage/UserDefaults (0.0.2):
- EFStorage/UserDefaults (0.1.1):
- EFStorage/Core
- EFStorage/YYCache (0.0.2):
- EFStorage/YYCache (0.1.1):
- EFStorage/Core
- YYCache (~> 1.0.4)
- KeychainAccess (3.2.0)
Expand All @@ -29,7 +29,7 @@ EXTERNAL SOURCES:
:path: "."

SPEC CHECKSUMS:
EFStorage: 983ed77e6f186c68b839ff2c3ad4fdb653d72601
EFStorage: d7553ae64a5fa45ea024df80e02bc7e3a85196ea
KeychainAccess: 3b1bf8a77eb4c6ea1ce9404c292e48f948954c6b
YYCache: 8105b6638f5e849296c71f331ff83891a4942952

Expand Down

0 comments on commit d7d8f78

Please sign in to comment.