Skip to content

Commit

Permalink
Release v0.8.5 (#766)
Browse files Browse the repository at this point in the history
- Bump version: 0.8.4 → 0.8.5
- Update dependencies
- Update changelog
- Update man page
- Update config test
  • Loading branch information
casey committed Mar 25, 2021
1 parent d3b277c commit 21f5e75
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 68 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Changelog
=========

[v0.8.5] - 2020-3-24
--------------------

### Added
- Allow escaping double braces with `{{{{` (#765)

### Misc
- Reorganize readme to highlight editor support (#764)
- Add categories and keywords to Cargo manifest (#763)
- Fix command output in readme (#760)
- Note Emacs package `just-mode` in readme (#759)
- Note shebang line splitting inconsistency in readme (#757)


[v0.8.4] - 2020-2-9
-------------------

Expand Down
102 changes: 40 additions & 62 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.8.4"
version = "0.8.5"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand All @@ -10,7 +10,7 @@ readme = "crates-io-readme.md"
edition = "2018"
autotests = false
categories = ["command-line-utilities", "development-tools"]
keywords = ["command line", "task", "runner", "development", "utility"]
keywords = ["command-line", "task", "runner", "development", "utility"]

[dependencies]
ansi_term = "0.12.0"
Expand Down Expand Up @@ -38,7 +38,7 @@ features = ["derive"]

[dev-dependencies]
executable-path = "1.0.0"
pretty_assertions = "0.6.0"
pretty_assertions = "0.7.0"
which = "4.0.0"

# Until github.com/rust-lang/cargo/pull/7333 makes it into stable,
Expand Down
4 changes: 2 additions & 2 deletions man/just.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.15.
.TH JUST "1" "February 2021" "just 0.8.4" "Just Manual"
.TH JUST "1" "March 2021" "just 0.8.5" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.8.4
just 0.8.5
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ mod tests {
// have proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just v0.8.4
const EXPECTED_HELP: &str = "just v0.8.5
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 21f5e75

Please sign in to comment.