Skip to content

Commit b65e1a3

Browse files
fix nef to each dependency (#157)
1 parent 401367b commit b65e1a3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ SHELL = /bin/bash
22
TOOL_NAME = nef
33

44
prefix ?= /usr/local
5-
version ?= 0.6.0
5+
version ?= 0.6.1
66

77
BUILD_PATH = /tmp/$(TOOL_NAME)/$(version)
88
PREFIX_BIN = $(prefix)/bin

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -324,12 +324,12 @@ extension Package.Dependency {
324324
static var dependencies: [Package.Dependency] {
325325
#if os(Linux)
326326
return [
327-
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .branch("master")),
327+
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .exact("0.8.0")),
328328
.package(url: "https://github.com/bow-swift/Swiftline.git", .exact("0.5.5")),
329329
]
330330
#else
331331
return [
332-
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .branch("master")),
332+
.package(name: "Bow", url: "https://github.com/bow-swift/bow.git", .exact("0.8.0")),
333333
.package(url: "https://github.com/bow-swift/Swiftline.git", .exact("0.5.5")),
334334
.package(url: "https://github.com/apple/swift-argument-parser", .exact("0.0.5")),
335335
]

project/nef.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -3960,24 +3960,24 @@
39603960
isa = XCRemoteSwiftPackageReference;
39613961
repositoryURL = "https://github.com/bow-swift/bow.git";
39623962
requirement = {
3963-
branch = master;
3964-
kind = branch;
3963+
kind = exactVersion;
3964+
version = 0.8.0;
39653965
};
39663966
};
39673967
8B46C433238FDA3300437659 /* XCRemoteSwiftPackageReference "SwiftLine" */ = {
39683968
isa = XCRemoteSwiftPackageReference;
39693969
repositoryURL = "https://github.com/bow-swift/SwiftLine.git";
39703970
requirement = {
3971-
kind = upToNextMajorVersion;
3972-
minimumVersion = 0.5.5;
3971+
kind = exactVersion;
3972+
version = 0.5.5;
39733973
};
39743974
};
39753975
8B558DE62431FDB0004B9CAA /* XCRemoteSwiftPackageReference "swift-argument-parser" */ = {
39763976
isa = XCRemoteSwiftPackageReference;
39773977
repositoryURL = "https://github.com/apple/swift-argument-parser.git";
39783978
requirement = {
3979-
kind = upToNextMajorVersion;
3980-
minimumVersion = 0.0.5;
3979+
kind = exactVersion;
3980+
version = 0.0.5;
39813981
};
39823982
};
39833983
/* End XCRemoteSwiftPackageReference section */

0 commit comments

Comments
 (0)