Skip to content

Commit 5ca789b

Browse files
committed
Update to 0.15.0
1 parent e2a8d2d commit 5ca789b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Master
44

5+
## 0.15.0
6+
57
#### Added
68
- Running offline without specified version [#164](https://github.com/yonaskolb/Mint/issues/164) [#166](https://github.com/yonaskolb/Mint/pull/166) @vknabel
79

@@ -11,6 +13,8 @@
1113
#### Fixed
1214
- Support building for architectures other than x86_64 on macOS (Apple Silicon) [#185](https://github.com/yonaskolb/Mint/pull/185)
1315

16+
[Commits](https://github.com/yonaskolb/Mint/compare/0.14.2...0.15.0)
17+
1418
## 0.14.2
1519

1620
#### Changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
EXECUTABLE_NAME = mint
22
REPO = https://github.com/yonaskolb/Mint
3-
VERSION = 0.14.2
3+
VERSION = 0.15.0
44

55
PREFIX = /usr/local
66
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
@@ -34,7 +34,7 @@ bump_brew:
3434
zip_binary: build
3535
zip -j $(EXECUTABLE_NAME).zip $(BUILD_PATH)
3636

37-
release: format_code
37+
release:
3838
sed -i '' 's|\(let version = "\)\(.*\)\("\)|\1$(VERSION)\3|' Sources/MintCLI/MintCLI.swift
3939

4040
git add .

Sources/MintCLI/MintCLI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import SwiftCLI
66

77
public class MintCLI {
88

9-
public let version = "0.14.2"
9+
public let version = "0.15.0"
1010

1111
let mint: Mint
1212
let cli: CLI

0 commit comments

Comments
 (0)