Skip to content

Commit e9bc9c6

Browse files
committed
Require 0.5.0 tags
...
1 parent 1022b8f commit e9bc9c6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
SWIFT_BUILD=swift build
55
SWIFT_CLEAN=swift package clean
66
SWIFT_BUILD_DIR=.build
7+
SWIFT_TEST=swift test
78
CONFIGURATION=release
89

910
# docker config
@@ -20,6 +21,10 @@ SWIFT_SOURCES=\
2021

2122
all:
2223
$(SWIFT_BUILD) -c $(CONFIGURATION)
24+
25+
# Cannot test in `release` configuration?!
26+
test:
27+
$(SWIFT_TEST)
2328

2429
clean :
2530
$(SWIFT_CLEAN)

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ let package = Package(
1616

1717
dependencies: [
1818
.package(url: "https://github.com/Macro-swift/Macro.git",
19-
from: "0.1.2"),
19+
from: "0.5.0"),
2020
.package(url: "https://github.com/Macro-swift/MacroExpress.git",
21-
from: "0.1.0")
21+
from: "0.5.0")
2222
],
2323

2424
targets: [

0 commit comments

Comments
 (0)