Skip to content

Commit

Permalink
Release v0.9.5 (#870)
Browse files Browse the repository at this point in the history
- Bump version: 0.9.4 → 0.9.5
- Update dependencies
- Update changelog
- Update man page
- Update config test
  • Loading branch information
casey authored Jun 12, 2021
1 parent a6453de commit 4a82c45
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 21 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Changelog
=========

[v0.9.5] - 2021-6-12
--------------------

### Added
- Add `--unstable` flag (#869)
- Add Sublime Text syntax file (#864)
- Add `--fmt` subcommand (#837)

### Misc
- Mention doniogela.dev/just/ in readme (#866)
- Mention that vim-just is now available from vim-polyglot (#865)
- Mention `--list-heading` newline behavior (#860)
- Check for `rg` in `bin/forbid` (#859)
- Document that variables are not exported to backticks in the same scope (#856)
- Remove `dotenv_load` from tests (#853)
- Remove `v` prefix from version (#850)
- Improve install script (#847)
- Move pages assets back to `docs` (#846)
- Move pages assets to `www` (#845)


[v0.9.4] - 2021-5-27
--------------------

Expand Down
31 changes: 16 additions & 15 deletions Cargo.lock

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

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

[workspace]
members = [".", "bin/prerelease"]
Expand All @@ -27,6 +28,7 @@ lazy_static = "1.0.0"
libc = "0.2.0"
log = "0.4.4"
snafu = "0.6.0"
strum_macros = "0.21.1"
target = "1.0.0"
tempfile = "3.0.0"
unicode-width = "0.1.0"
Expand All @@ -36,7 +38,7 @@ version = "3.1.1"
features = ["termination"]

[dependencies.strum]
version = "0.20.0"
version = "0.21.0"
features = ["derive"]

[dev-dependencies]
Expand Down
12 changes: 9 additions & 3 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" "May 2021" "just 0.9.4" "Just Manual"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.17.
.TH JUST "1" "June 2021" "just 0.9.5" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.9.4
just 0.9.5
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand All @@ -30,6 +30,9 @@ Edit justfile with editor given by $VISUAL or $EDITOR, falling back to `vim`
Evaluate and print all variables. If a variable name is given as an argument, only print
that variable's value.
.TP
\fB\-\-fmt\fR
Format and overwrite justfile
.TP
\fB\-\-highlight\fR
Highlight echoed recipe lines in bold
.TP
Expand Down Expand Up @@ -57,6 +60,9 @@ List names of available recipes
\fB\-u\fR, \fB\-\-unsorted\fR
Return list and summary entries in source order
.TP
\fB\-\-unstable\fR
Enable unstable features
.TP
\fB\-\-variables\fR
List names of variables
.TP
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ mod tests {
// have proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just 0.9.4
const EXPECTED_HELP: &str = "just 0.9.5
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 4a82c45

Please sign in to comment.