From 53e1ed731908082970c46c4246157662e72c4431 Mon Sep 17 00:00:00 2001 From: OhKanghoon Date: Mon, 14 Dec 2020 18:13:47 +0900 Subject: [PATCH] Bump version to 1.4.1 --- Package.swift | 2 +- README.md | 4 ++-- RxApolloClient.podspec | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Package.swift b/Package.swift index 22a1c68..f681c1f 100644 --- a/Package.swift +++ b/Package.swift @@ -12,7 +12,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apollographql/apollo-ios.git", .upToNextMajor(from: "0.36.0")), - .package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.1.0")), + .package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")), ], targets: [ .target(name: "RxApolloClient", dependencies: ["Apollo", "RxSwift"]) diff --git a/README.md b/README.md index 30fcb84..8f16ded 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Platform](https://img.shields.io/cocoapods/p/RxApolloClient.svg?style=flat)](https://cocoapods.org/pods/RxApolloClient) ## Dependencies -- [RxSwift](https://github.com/ReactiveX/RxSwift) (~> 5.1) +- [RxSwift](https://github.com/ReactiveX/RxSwift) (~> 5.0) - [apollo-ios](https://github.com/apollographql/apollo-ios) (~> 0.36.0) ## Requirements @@ -19,7 +19,7 @@ - Using [CocoaPods](https://cocoapods.org) ```ruby -pod 'RxApolloClient', '1.4.0' +pod 'RxApolloClient', '1.4.1' ``` - Using [Swift Package Manager] ```swift diff --git a/RxApolloClient.podspec b/RxApolloClient.podspec index 2d64bd4..f9a94cc 100644 --- a/RxApolloClient.podspec +++ b/RxApolloClient.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'RxApolloClient' - s.version = '1.4.0' + s.version = '1.4.1' s.summary = 'Rx wrapper of Apollo Client' s.description = <<-DESC RxSwift extensions for Apollo Client @@ -16,6 +16,6 @@ Pod::Spec.new do |s| s.source_files = 'Sources/**/*.{swift,h,m}' - s.dependency 'RxSwift', '~> 5.1' + s.dependency 'RxSwift', '~> 5.0' s.dependency 'Apollo', '~> 0.36.0' end