From 449c48c9e3847b8d1945da40f95611e661dd2747 Mon Sep 17 00:00:00 2001 From: Geoffrey Foster Date: Thu, 6 Jun 2019 15:17:38 -0400 Subject: [PATCH] bumping to version 0.3.1 to resolve issue with generated path in xcodeproject --- .gitignore | 1 + Package.resolved | 4 ++-- Package.swift | 7 +++++-- Sources/xcoder/Version.swift | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f50c6d8..1da65be 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ playground.xcworkspace # Package.pins .build/ *.xcodeproj +.swiftpm # fastlane # diff --git a/Package.resolved b/Package.resolved index 3aad30a..a14f93e 100644 --- a/Package.resolved +++ b/Package.resolved @@ -24,8 +24,8 @@ "repositoryURL": "https://github.com/g-Off/XcodeProject.git", "state": { "branch": null, - "revision": "a1e12a8659684039258b79761c65abb9ec98fc94", - "version": "0.4.0" + "revision": "9a1e1d107db329c4e0b8cf5cc9b11ad1a79f7156", + "version": "0.5.0-alpha.2" } } ] diff --git a/Package.swift b/Package.swift index 8fd3795..e360ea3 100644 --- a/Package.swift +++ b/Package.swift @@ -1,8 +1,11 @@ -// swift-tools-version:4.2 +// swift-tools-version:5.0 import PackageDescription let package = Package( name: "Xcoder", + platforms: [ + .macOS(.v10_14) + ], products: [ .executable( name: "xcoder", @@ -12,7 +15,7 @@ let package = Package( targets: ["XcoderKit"]), ], dependencies: [ - .package(url: "https://github.com/g-Off/XcodeProject.git", from: "0.4.0"), + .package(url: "https://github.com/g-Off/XcodeProject.git", from: "0.5.0-alpha.2"), .package(url: "https://github.com/g-Off/CommandRegistry.git", .branch("master")) ], targets: [ diff --git a/Sources/xcoder/Version.swift b/Sources/xcoder/Version.swift index 1e5e950..1781604 100644 --- a/Sources/xcoder/Version.swift +++ b/Sources/xcoder/Version.swift @@ -1,5 +1,5 @@ import Utility extension Version { - static var current: Version = "0.3.0" + static var current: Version = "0.3.1" }