This commit is contained in:
John Estropia
2019-02-28 18:57:28 +09:00
parent b3421888a6
commit 6eec93a214
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "CoreStore" s.name = "CoreStore"
s.version = "6.2.0" s.version = "6.2.1"
s.swift_version = "4.2" s.swift_version = "4.2"
s.license = "MIT" s.license = "MIT"
s.homepage = "https://github.com/JohnEstropia/CoreStore" s.homepage = "https://github.com/JohnEstropia/CoreStore"

View File

@@ -1883,7 +1883,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
### Install with Carthage ### Install with Carthage
In your `Cartfile`, add In your `Cartfile`, add
``` ```
github "JohnEstropia/CoreStore" >= 6.2.0 github "JohnEstropia/CoreStore" >= 6.2.1
``` ```
and run and run
``` ```
@@ -1894,7 +1894,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
#### Install with Swift Package Manager: #### Install with Swift Package Manager:
```swift ```swift
dependencies: [ dependencies: [
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "6.2.0")) .package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "6.2.1"))
] ]
``` ```
Declare `import CoreStore` in your swift file to use the library. Declare `import CoreStore` in your swift file to use the library.