Skip to content

Commit

Permalink
Update to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Feb 13, 2020
1 parent 89fb64f commit f1ec9d9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

## Master

## 0.14.0

#### Added
- Added `--no-install` option to `mint run` [#160](https://github.com/yonaskolb/Mint/pull/160) @yonaskolb
- Added `mint which` command for printing the path of an executable [#162](https://github.com/yonaskolb/Mint/pull/162) @yonaskolb
- The executable no longer needs to be provided in `mint run` when passing arguments if there is only a single executable in the package eg: `mint run realm/SwiftLint autocorrect` [#159](https://github.com/yonaskolb/Mint/pull/159) @yonaskolb

#### Changed
- Moved output of some commands to `--verbose` and tweaked output [#154](https://github.com/yonaskolb/Mint/pull/154) @yonaskolb
- The executable no longer needs to be provided in `mint run` when passing arguments if there is only a single executable in the package `mint run realm/SwiftLint autocorrect` [#159](https://github.com/yonaskolb/Mint/pull/159) @yonaskolb

#### Fixed
- Fixed a bug that prevented the `Mintfile` from resolving a GitHub repository where the name contains a period [#153](https://github.com/yonaskolb/Mint/pull/153) @liamnichols

#### Internal
- Updated to SwiftCLI 6.0 [#157](https://github.com/yonaskolb/Mint/pull/157) @yonaskolb
- Replace CircleCI with Github actions [#158](https://github.com/yonaskolb/Mint/pull/158) @yonaskolb

## 0.14.0

#### Fixed
- Fixed a bug that prevented the `Mintfile` from resolving a GitHub repository where the name contains a period [#153](https://github.com/yonaskolb/Mint/pull/153) @liamnichols

[Commits](https://github.com/yonaskolb/Mint/compare/0.13.0...0.14.0)

## 0.13.0
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.13.0
VERSION = 0.14.0

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.13.0"
public let version = "0.14.0"

let mint: Mint
let cli: CLI
Expand Down
2 changes: 1 addition & 1 deletion Sources/MintKit/Mint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public class Mint {

let isInstalled = packagePath.installPath.exists

if !isInstalled && noInstall {
if !isInstalled, noInstall {
throw MintError.packageNotInstalled(package)
}

Expand Down
6 changes: 3 additions & 3 deletions Tests/MintTests/MintTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ class MintTests: XCTestCase {
let mintPath = Path.temporary + "mint"
let linkPath = Path.temporary + "mint-installs"
lazy var mint = Mint(path: mintPath,
linkPath: linkPath,
standardOut: WriteStream.null,
standardError: WriteStream.null)
linkPath: linkPath,
standardOut: WriteStream.null,
standardError: WriteStream.null)
let testRepo = "yonaskolb/SimplePackage"
let sshTestRepo = "git@github.com:yonaskolb/SimplePackage.git"
let testVersion = "4.0.0"
Expand Down

0 comments on commit f1ec9d9

Please sign in to comment.