Skip to content

Commit 04bced7

Browse files
committed
Tag beta 8
1 parent f5b561d commit 04bced7

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

Makefile

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
.DEFAULT_GOAL := lint
22

3+
RELEASE_VERSION = $(shell .build/release/hostmgr --version)
4+
35
lint:
4-
docker run -it --rm -v `pwd`:`pwd` -w `pwd` ghcr.io/realm/swiftlint:0.49.1 swiftlint lint --strict --progress
6+
docker run -it --rm -v `pwd`:`pwd` -w `pwd` ghcr.io/realm/swiftlint:0.47.1 swiftlint lint --strict
7+
8+
autocorrect:
9+
docker run -it --rm -v `pwd`:`pwd` -w `pwd` ghcr.io/realm/swiftlint:0.47.1 swiftlint --autocorrect
10+
11+
build-release:
12+
@echo "--- Building Release"
13+
swift build -c release
514

6-
lintfix:
7-
docker run -it --rm -v `pwd`:`pwd` -w `pwd` ghcr.io/realm/swiftlint:0.49.1 swiftlint --fix
15+
release: build-release
16+
@echo "--- Tagging Release"
17+
git tag $(RELEASE_VERSION)
18+
git push origin $(RELEASE_VERSION)

Sources/hostmgr/HostMgrCommand.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import libhostmgr
55
@main
66
struct Hostmgr: AsyncParsableCommand {
77

8-
private static var appVersion = "0.15.0-beta.7"
8+
private static var appVersion = "0.15.0-beta.8"
99

1010
static var configuration = CommandConfiguration(
1111
abstract: "A utility for managing VM hosts",

0 commit comments

Comments
 (0)