From b3e5a233e0d85fd4d69f561c80988590859c7dee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mro=CC=81z?= Date: Sat, 15 Feb 2020 12:56:10 +0100 Subject: [PATCH] Version 14.0.0 --- Changelog.md | 2 ++ Moya.podspec | 2 +- Package.swift | 10 +++++----- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2b0ede947..ac79f900e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,7 @@ # Next +# [14.0.0] - 2020-02-15 + ### Changed - **Breaking Change** Minimum version of `Alamofire` is now 5.0. [#1992](https://github.com/Moya/Moya/pull/1992) by [@sunshinejr](https://github.com/sunshinejr). - **Breaking Change** `MultiTarget` now implements `AccessTokenAuthorizable` so that the inner target's `authorizationType` is correctly returned to the `AccessTokenPlugin` when requested. [#1979](https://github.com/Moya/Moya/pull/1979) by [@amaurydavid](https://github.com/amaurydavid). diff --git a/Moya.podspec b/Moya.podspec index b3a25d726..b4e3583f2 100644 --- a/Moya.podspec +++ b/Moya.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Moya" - s.version = "14.0.0-beta.6" + s.version = "14.0.0" s.summary = "Network abstraction layer written in Swift" s.description = <<-EOS Moya abstracts network commands using Swift Generics to provide developers diff --git a/Package.swift b/Package.swift index 386097c98..dbf860408 100644 --- a/Package.swift +++ b/Package.swift @@ -19,16 +19,16 @@ let package = Package( .package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.0.0")), .package(url: "https://github.com/Moya/ReactiveSwift.git", .upToNextMajor(from: "6.1.0")), .package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")), - .package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "2.0.0")), // dev - .package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "8.0.0")), // dev - .package(url: "https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0")), // dev - .package(url: "https://github.com/shibapm/Rocket", .upToNextMajor(from: "1.0.0")) // dev +// .package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "2.0.0")), // dev +// .package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "8.0.0")), // dev +// .package(url: "https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0")), // dev +// .package(url: "https://github.com/shibapm/Rocket", .upToNextMajor(from: "1.0.0")) // dev ], targets: [ .target(name: "Moya", dependencies: ["Alamofire"]), .target(name: "ReactiveMoya", dependencies: ["Moya", "ReactiveSwift"]), .target(name: "RxMoya", dependencies: ["Moya", "RxSwift"]), - .testTarget(name: "MoyaTests", dependencies: ["Moya", "RxMoya", "ReactiveMoya", "Quick", "Nimble", "OHHTTPStubsSwift"]) // dev +// .testTarget(name: "MoyaTests", dependencies: ["Moya", "RxMoya", "ReactiveMoya", "Quick", "Nimble", "OHHTTPStubsSwift"]) // dev ] )