Skip to content

Commit

Permalink
Version v1.0.0-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephDuffy committed Jul 8, 2019
1 parent 61aff35 commit 05b6d0f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ let package = Package(
.library(name: "Partial", targets: ["Partial"]),
],
dependencies: [
.package(url: "https://github.com/danger/swift.git", from: "1.0.0"), // dev
.package(url: "https://github.com/Quick/Quick.git", from: "2.0.0"), // dev
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.0"), // dev
.package(url: "https://github.com/Realm/SwiftLint", from: "0.32.0"), // dev
.package(url: "https://github.com/f-meloni/Rocket", from: "0.1.0"), // dev
// .package(url: "https://github.com/danger/swift.git", from: "1.0.0"), // dev
// .package(url: "https://github.com/Quick/Quick.git", from: "2.0.0"), // dev
// .package(url: "https://github.com/Quick/Nimble.git", from: "8.0.0"), // dev
// .package(url: "https://github.com/Realm/SwiftLint", from: "0.32.0"), // dev
// .package(url: "https://github.com/f-meloni/Rocket", from: "0.1.0"), // dev
],
targets: [
.target(name: "Partial"),
.testTarget(name: "PartialTests", dependencies: ["Partial", "Quick", "Nimble"]), // dev
.target(name: "CIDependencies", dependencies: ["Danger", "swiftlint"], path: "Resources"), // dev
// .testTarget(name: "PartialTests", dependencies: ["Partial", "Quick", "Nimble"]), // dev
// .target(name: "CIDependencies", dependencies: ["Danger", "swiftlint"], path: "Resources"), // dev
],
swiftLanguageVersions: [.v5]
)
2 changes: 1 addition & 1 deletion Partial.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Partial"
spec.version = "0.2.0"
spec.version = "1.0.0-rc.4"
spec.summary = "Type-safe wrapper to make a type's properties optional"
spec.description = "Type-safe wrapper to make a type's properties optional, with extra convenience for creating instances, unwrapping individual properties, and building an instance with multiple pieces of code contributing values"
spec.homepage = "https://github.com/JosephDuffy/Partial"
Expand Down
4 changes: 2 additions & 2 deletions Partial.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@
TVOS_DEPLOYMENT_TARGET = 9.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
VERSION_NUMBER = 0.2.0;
VERSION_NUMBER = 1.0.0-rc.4;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Debug;
Expand Down Expand Up @@ -822,7 +822,7 @@
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
VERSION_NUMBER = 0.2.0;
VERSION_NUMBER = 1.0.0-rc.4;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Release;
Expand Down

0 comments on commit 05b6d0f

Please sign in to comment.