From d1e88ba15a2ca1549a283e72afcfa653468cf800 Mon Sep 17 00:00:00 2001 From: Jorge Revuelta Herrero Date: Tue, 10 Dec 2019 19:23:35 +0100 Subject: [PATCH] Version v2.2.0 --- Mini-Swift.podspec | 2 +- Package.swift | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Mini-Swift.podspec b/Mini-Swift.podspec index bfe535cb..dbc1ba36 100644 --- a/Mini-Swift.podspec +++ b/Mini-Swift.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'Mini-Swift' - s.version = '2.1.0' + s.version = '2.2.0' s.swift_version = '5.0' s.summary = 'The minimal expression of a Flux architecture in Swift.' diff --git a/Package.swift b/Package.swift index c6e1140e..f4fa8bbb 100644 --- a/Package.swift +++ b/Package.swift @@ -30,16 +30,16 @@ let package = Package( .package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0"), .package(url: "https://github.com/apple/swift-nio.git", .exact("2.7.1")), // Development - .package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")), // dev - .package(url: "https://github.com/minuscorp/ModuleInterface", from: "0.0.1"), // dev - .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.35.8"), // dev - .package(url: "https://github.com/jpsim/SourceKitten", from: "0.26.0"), // dev - .package(url: "https://github.com/shibapm/Rocket", from: "0.4.0"), // dev - .package(url: "https://github.com/Realm/SwiftLint", from: "0.35.0"), // dev - .package(url: "https://github.com/eneko/SourceDocs", from: "0.6.1"), // dev - .package(url: "https://github.com/shibapm/PackageConfig.git", from: "0.12.2"), // dev - .package(url: "https://github.com/shibapm/Komondor.git", from: "1.0.0"), // dev - .package(url: "https://github.com/Carthage/Commandant.git", .exact("0.17.0")), // dev +// .package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")), // dev +// .package(url: "https://github.com/minuscorp/ModuleInterface", from: "0.0.1"), // dev +// .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.35.8"), // dev +// .package(url: "https://github.com/jpsim/SourceKitten", from: "0.26.0"), // dev +// .package(url: "https://github.com/shibapm/Rocket", from: "0.4.0"), // dev +// .package(url: "https://github.com/Realm/SwiftLint", from: "0.35.0"), // dev +// .package(url: "https://github.com/eneko/SourceDocs", from: "0.6.1"), // dev +// .package(url: "https://github.com/shibapm/PackageConfig.git", from: "0.12.2"), // dev +// .package(url: "https://github.com/shibapm/Komondor.git", from: "1.0.0"), // dev +// .package(url: "https://github.com/Carthage/Commandant.git", .exact("0.17.0")), // dev ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -56,7 +56,7 @@ let package = Package( name: "TestMiddleware", dependencies: ["Mini"] ), - .testTarget(name: "MiniSwiftTests", dependencies: ["Mini", "TestMiddleware", "NIOConcurrencyHelpers", "RxSwift", "Nimble", "RxTest", "RxBlocking"]), // dev +// .testTarget(name: "MiniSwiftTests", dependencies: ["Mini", "TestMiddleware", "NIOConcurrencyHelpers", "RxSwift", "Nimble", "RxTest", "RxBlocking"]), // dev ], swiftLanguageVersions: [.version("4"), .version("4.2"), .version("5")] )