Skip to content

Commit 713b6be

Browse files
authored
Merge pull request #17 from fumito-ito/version/bump
fix invalid version
2 parents 924ddd7 + 4b7b7d5 commit 713b6be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ final class ViewModel: ObservableObject {
343343
If you're using Cocoapods, just add this line to your `Podfile`:
344344

345345
```ruby
346-
pod 'SwiftyRemoteConfig`, `~> 0.20`
346+
pod 'SwiftyRemoteConfig`, `~> 0.2.1`
347347
```
348348
349349
Install by running this command in your terminal:
@@ -363,7 +363,7 @@ import SwiftyRemoteConfig
363363
Just add your Cartfile
364364
365365
```
366-
github "fumito-ito/SwiftyRemoteConfig" ~> 0.20
366+
github "fumito-ito/SwiftyRemoteConfig" ~> 0.2.1
367367
```
368368
369369
### Swift Package Manager
@@ -375,7 +375,7 @@ let package = Package(
375375
name: "MyPackage",
376376
products: [...],
377377
dependencies: [
378-
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "0.20"))
378+
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "0.2.1"))
379379
]
380380
)
381381
```

SwiftyRemoteConfig.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "SwiftyRemoteConfig"
3-
spec.version = "0.20"
3+
spec.version = "0.2.1"
44
spec.summary = "Modern Swift API for FirebaseRemoteConfig"
55

66
spec.description = <<-DESC

0 commit comments

Comments
 (0)