Skip to content

Commit

Permalink
fix nef to each dependency (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelangel-dev authored Apr 30, 2020
1 parent 401367b commit b65e1a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL = /bin/bash
TOOL_NAME = nef

prefix ?= /usr/local
version ?= 0.6.0
version ?= 0.6.1

BUILD_PATH = /tmp/$(TOOL_NAME)/$(version)
PREFIX_BIN = $(prefix)/bin
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,12 @@ extension Package.Dependency {
static var dependencies: [Package.Dependency] {
#if os(Linux)
return [
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .branch("master")),
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .exact("0.8.0")),
.package(url: "https://github.com/bow-swift/Swiftline.git", .exact("0.5.5")),
]
#else
return [
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .branch("master")),
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .exact("0.8.0")),
.package(url: "https://github.com/bow-swift/Swiftline.git", .exact("0.5.5")),
.package(url: "https://github.com/apple/swift-argument-parser", .exact("0.0.5")),
]
Expand Down
12 changes: 6 additions & 6 deletions project/nef.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3960,24 +3960,24 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/bow-swift/bow.git";
requirement = {
branch = master;
kind = branch;
kind = exactVersion;
version = 0.8.0;
};
};
8B46C433238FDA3300437659 /* XCRemoteSwiftPackageReference "SwiftLine" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/bow-swift/SwiftLine.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.5.5;
kind = exactVersion;
version = 0.5.5;
};
};
8B558DE62431FDB0004B9CAA /* XCRemoteSwiftPackageReference "swift-argument-parser" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-argument-parser.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.0.5;
kind = exactVersion;
version = 0.0.5;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down

0 comments on commit b65e1a3

Please sign in to comment.