Bump version: v0.4.4 -> v0.4.5 (#505)
This commit is contained in:
parent
48b25c14b1
commit
f3b8030070
51
CHANGELOG.md
51
CHANGELOG.md
@ -2,6 +2,57 @@ Changelog
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
[v0.4.5] - 2019-10-31
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
## User-visible
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Display alias with `--show NAME` if one exists
|
||||||
|
|
||||||
|
### Documented
|
||||||
|
- Document multi-line constructs (for/if/while) (#453)
|
||||||
|
- Generate man page with help2man (#463)
|
||||||
|
- Add context to deprecation warnings (#473)
|
||||||
|
- Improve messages for alias error messages (#500)
|
||||||
|
|
||||||
|
## Misc
|
||||||
|
|
||||||
|
### Cleanup
|
||||||
|
- Update deprecated rust range patterns and clippy config (#450)
|
||||||
|
- Make comments in common.rs lowercase (#470)
|
||||||
|
- Use `pub(crate)` instead of `pub` (#471)
|
||||||
|
- Hide summary functionality behind feature flag (#472)
|
||||||
|
- Fix `summary` feature conditional compilation (#475)
|
||||||
|
- Allow integration test cases to omit common values (#480)
|
||||||
|
- Add `unindent()` for nicer integration test strings (#481)
|
||||||
|
- Start pulling argument parsing out of run::run() (#483)
|
||||||
|
- Add explicit `Subcommand` enum (#484)
|
||||||
|
- Avoid using error code `1` in integration tests (#486)
|
||||||
|
- Use more indented strings in integration tests (#489)
|
||||||
|
- Refactor `run::run` and Config (#490)
|
||||||
|
- Remove `misc.rs` (#491)
|
||||||
|
- Remove unused `use` statements (#497)
|
||||||
|
- Refactor lexer tests (#498)
|
||||||
|
- Use constants instead of literals in arg parser (#504)
|
||||||
|
|
||||||
|
### Infrastructure
|
||||||
|
- Add repository attribute to Cargo.toml (#493)
|
||||||
|
- Check minimal version compatibility before publishing (#487)
|
||||||
|
|
||||||
|
### Continuous Integration
|
||||||
|
- Disable FreeBSD builds (#474)
|
||||||
|
- Use `bash` as shell for all integration tests (#479)
|
||||||
|
- Don't install `dash` on Travis (#482)
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
- Use `tempfile` crate instead of `tempdir` (#455)
|
||||||
|
- Bump clap dependency to 2.33.0 (#458)
|
||||||
|
- Minimize dependency version requirements (#461)
|
||||||
|
- Remove dependency on brev (#462)
|
||||||
|
- Update dependencies (#501)
|
||||||
|
|
||||||
|
|
||||||
[v0.4.4] - 2019-06-02
|
[v0.4.4] - 2019-06-02
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -158,7 +158,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "0.4.4"
|
version = "0.4.5"
|
||||||
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.4.4"
|
version = "0.4.5"
|
||||||
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"
|
||||||
|
2
justfile
2
justfile
@ -55,7 +55,7 @@ publish-check: lint clippy test
|
|||||||
grep {{version}} CHANGELOG.md
|
grep {{version}} CHANGELOG.md
|
||||||
cargo +nightly generate-lockfile -Z minimal-versions
|
cargo +nightly generate-lockfile -Z minimal-versions
|
||||||
cargo test
|
cargo test
|
||||||
git checkout
|
git checkout Cargo.lock
|
||||||
|
|
||||||
publish: publish-check
|
publish: publish-check
|
||||||
cargo publish
|
cargo publish
|
||||||
|
@ -332,7 +332,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.4.4
|
const EXPECTED_HELP: &str = "just v0.4.5
|
||||||
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