Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version bump #16

Merged
merged 1 commit into from
Feb 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ final class ViewModel: ObservableObject {
If you're using Cocoapods, just add this line to your `Podfile`:

```ruby
pod 'SwiftyRemoteConfig`, `~> 0.1.1`
pod 'SwiftyRemoteConfig`, `~> 0.20`
```

Install by running this command in your terminal:
Expand All @@ -363,7 +363,7 @@ import SwiftyRemoteConfig
Just add your Cartfile

```
github "fumito-ito/SwiftyRemoteConfig" ~> 0.1.1
github "fumito-ito/SwiftyRemoteConfig" ~> 0.20
```

### Swift Package Manager
Expand All @@ -375,7 +375,7 @@ let package = Package(
name: "MyPackage",
products: [...],
dependencies: [
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "0.1.1"))
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "0.20"))
]
)
```
Expand Down
4 changes: 2 additions & 2 deletions SwiftyRemoteConfig.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "SwiftyRemoteConfig"
spec.version = "0.1.1"
spec.version = "0.20"
spec.summary = "Modern Swift API for FirebaseRemoteConfig"

spec.description = <<-DESC
Expand All @@ -22,6 +22,6 @@ Pod::Spec.new do |spec|
spec.swift_version = "5.0", "5.1", "5.2"

spec.static_framework = true
spec.dependency "FirebaseRemoteConfig", "~> 8.8.0"
spec.dependency "FirebaseRemoteConfig", "~> 8.12.1"

end