Skip to content

Commit

Permalink
Merge pull request #26 from fumito-ito/version/bump
Browse files Browse the repository at this point in the history
version bump
  • Loading branch information
fumito-ito authored Oct 16, 2022
2 parents 6dbff83 + 842d7c7 commit 826ff0f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" ~> 9.0.0
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseProtobufBinary.json" ~> 9.0.0
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" ~> 9.0.0
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" ~> 10.0.0
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseProtobufBinary.json" ~> 10.0.0
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" ~> 10.0.0
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let package = Package(
name: "SwiftyRemoteConfig",
platforms: [
.iOS(.v11),
.macOS(.v10_12),
.macOS(.v10_13),
.tvOS(.v12),
.watchOS(.v6),
],
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ final class ViewModel: ObservableObject {

### Frameworks

- **Firebase iOS SDK** >= 9.0.0
- **Firebase iOS SDK** >= 10.0.0

## Installation

Expand All @@ -451,7 +451,7 @@ final class ViewModel: ObservableObject {
If you're using Cocoapods, just add this line to your `Podfile`:

```ruby
pod 'SwiftyRemoteConfig`, `~> 0.4.0`
pod 'SwiftyRemoteConfig`, `~> 1.0.0`
```
Install by running this command in your terminal:
Expand All @@ -471,7 +471,7 @@ import SwiftyRemoteConfig
Just add your Cartfile
```
github "fumito-ito/SwiftyRemoteConfig" ~> 0.4.0
github "fumito-ito/SwiftyRemoteConfig" ~> 1.0.0
```
### Swift Package Manager
Expand All @@ -483,7 +483,7 @@ let package = Package(
name: "MyPackage",
products: [...],
dependencies: [
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "0.4.0"))
.package(url: "https://github.com/fumito-ito/SwiftyRemoteConfig.git", .upToNextMajor(from: "1.0.0"))
]
)
```
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.4.0"
spec.version = "1.0.0"
spec.summary = "Modern Swift API for FirebaseRemoteConfig"

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

spec.static_framework = true
spec.dependency "FirebaseRemoteConfig", "~> 9.0.0"
spec.dependency "FirebaseRemoteConfig", "~> 10.0.0"

end

0 comments on commit 826ff0f

Please sign in to comment.