Skip to content

Commit

Permalink
Merge pull request #1 from ParkHyeongSeok/phs/rxswift-6.5
Browse files Browse the repository at this point in the history
RxSwift BumpVersion to 6.5.0
  • Loading branch information
ParkHyeongSeok authored Feb 2, 2023
2 parents 9a5756b + 9ad467d commit 8e845a1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
"state": {
"branch": null,
"revision": "b3e888b4972d9bc76495dd74d30a8c7fad4b9395",
"version": "5.0.1"
"revision": "b4307ba0b6425c0ba4178e138799946c3da594f8",
"version": "6.5.0"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import PackageDescription
let package = Package(
name: "ReusableKit",
platforms: [
.iOS(.v8), .tvOS(.v9)
.iOS(.v10), .tvOS(.v9)
],
products: [
.library(name: "ReusableKit", targets: ["ReusableKit"]),
.library(name: "RxReusableKit", targets: ["RxReusableKit"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
],
targets: [
.target(name: "ReusableKit"),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ $ swift package generate-xcodeproj

## Installation

- **For iOS 8+ projects** with [CocoaPods](https://cocoapods.org):
- **For iOS 10+ projects** with [CocoaPods](https://cocoapods.org):

```ruby
pod 'ReusableKit'
Expand Down
6 changes: 3 additions & 3 deletions ReusableKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.swift_version = "5.0"

s.ios.deployment_target = "8.0"
s.ios.deployment_target = "10.0"

s.default_subspec = "Core"

Expand All @@ -22,7 +22,7 @@ Pod::Spec.new do |s|
s.subspec "RxSwift" do |ss|
ss.source_files = "Sources/RxReusableKit/*.swift"
ss.dependency "ReusableKit/Core"
ss.dependency "RxSwift", "~> 5.0"
ss.dependency "RxCocoa", "~> 5.0"
ss.dependency "RxSwift", "~> 6.0"
ss.dependency "RxCocoa", "~> 6.0"
end
end

0 comments on commit 8e845a1

Please sign in to comment.