Skip to content

Commit

Permalink
Update to 0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Nov 20, 2022
1 parent 8a82de5 commit 62ee595
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug mint",
"program": "${workspaceFolder:Mint}/.build/debug/mint",
"args": [],
"cwd": "${workspaceFolder:Mint}",
"preLaunchTask": "swift: Build Debug mint"
},
{
"type": "lldb",
"request": "launch",
"name": "Release mint",
"program": "${workspaceFolder:Mint}/.build/release/mint",
"args": [],
"cwd": "${workspaceFolder:Mint}",
"preLaunchTask": "swift: Build Release mint"
}
]
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Master

## 0.17.3

#### Changed
- Only build executables from the package [#251](https://github.com/yonaskolb/Mint/pull/251) @417-72KI

#### Fixed
- Fixed some packages like newest version of SwiftlLint building as we're not building tests anymore [#251](https://github.com/yonaskolb/Mint/pull/251) @417-72KI

[Commits](https://github.com/yonaskolb/Mint/compare/0.17.2...0.17.3)

## 0.17.2

#### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
EXECUTABLE_NAME = mint
REPO = https://github.com/yonaskolb/Mint
VERSION = 0.17.2
VERSION = 0.17.3

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion Sources/MintCLI/MintCLI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import SwiftCLI

public class MintCLI {

public let version = "0.17.2"
public let version = "0.17.3"

let mint: Mint
let cli: CLI
Expand Down

0 comments on commit 62ee595

Please sign in to comment.