Release v0.5.1 (#544)
- Bump version: v0.5.0 -> v0.5.1 - Update changelog
This commit is contained in:
parent
d157c87460
commit
e5232fda89
15
CHANGELOG.md
15
CHANGELOG.md
@ -2,6 +2,21 @@ Changelog
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
[v0.5.1] - 2019-11-20
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
## Added
|
||||||
|
- Add `--init` subcommand (#541)
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
- Avoid fs::canonicalize (#539)
|
||||||
|
|
||||||
|
## Misc
|
||||||
|
- Mention `set shell` as altenative to installing `sh` (#533)
|
||||||
|
- Refactor Compilation error to contain a Token (#535)
|
||||||
|
- Move lexer comment (#536)
|
||||||
|
- Add missing `--init` test (#543)
|
||||||
|
|
||||||
[v0.5.0] - 2019-11-12
|
[v0.5.0] - 2019-11-12
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -191,7 +191,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
description = "🤖 Just a command runner"
|
description = "🤖 Just a command runner"
|
||||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
@ -586,7 +586,7 @@ mod tests {
|
|||||||
// proper tests for all the flags, but this will do for now.
|
// proper tests for all the flags, but this will do for now.
|
||||||
#[test]
|
#[test]
|
||||||
fn help() {
|
fn help() {
|
||||||
const EXPECTED_HELP: &str = "just v0.5.0
|
const EXPECTED_HELP: &str = "just v0.5.1
|
||||||
Casey Rodarmor <casey@rodarmor.com>
|
Casey Rodarmor <casey@rodarmor.com>
|
||||||
🤖 Just a command runner - https://github.com/casey/just
|
🤖 Just a command runner - https://github.com/casey/just
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user