version bump

This commit is contained in:
John Estropia
2022-09-12 10:04:33 +09:00
parent 7f4cfaf5a0
commit 8faf44c166
3 changed files with 7 additions and 3 deletions

View File

@@ -2449,7 +2449,7 @@ var body: some View {
### Install with CocoaPods
In your `Podfile`, add
```
pod 'CoreStore', '~> 8.0'
pod 'CoreStore', '~> 9.0'
```
and run
```
@@ -2460,7 +2460,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
### Install with Carthage
In your `Cartfile`, add
```
github "JohnEstropia/CoreStore" >= 8.0.0
github "JohnEstropia/CoreStore" >= 9.0.0
```
and run
```
@@ -2471,7 +2471,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
#### Install with Swift Package Manager:
```swift
dependencies: [
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "8.0.1"))
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "9.0.0"))
]
```
Declare `import CoreStore` in your swift file to use the library.