From ebc7982da113fb65ba25a02971e47576820a2e3e Mon Sep 17 00:00:00 2001 From: Jorge Revuelta Herrero Date: Tue, 5 Nov 2019 16:07:40 +0100 Subject: [PATCH] Version v2.0.4 --- Mini-Swift.podspec | 2 +- Package.swift | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Mini-Swift.podspec b/Mini-Swift.podspec index c6daa305..71cc7390 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.2' + s.version = '2.0.4' 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 4f8973e6..1322cd41 100644 --- a/Package.swift +++ b/Package.swift @@ -30,14 +30,14 @@ 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", .exact("0.25.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.5.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/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", .exact("0.25.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.5.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 ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -54,7 +54,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")] )