From a0de00e9b187fdea89b3598e8d29e238acdfd344 Mon Sep 17 00:00:00 2001 From: Jorge Revuelta Herrero Date: Thu, 14 Nov 2019 13:35:22 +0100 Subject: [PATCH] Version v2.1.0 --- Mini-Swift.podspec | 2 +- Package.swift | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Mini-Swift.podspec b/Mini-Swift.podspec index 6b05815d..bfe535cb 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.0.5' + s.version = '2.1.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 1e199dc1..b3e6be53 100644 --- a/Package.swift +++ b/Package.swift @@ -30,15 +30,15 @@ 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/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.16.0")), // dev +// .package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")), // 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.16.0")), // dev ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -55,7 +55,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")] )