Skip to content

Commit

Permalink
Release v0.7.3 (#681)
Browse files Browse the repository at this point in the history
- Bump version: 0.7.2 → 0.7.3
- Update changelog
- Update man page
- Update config test
  • Loading branch information
casey authored Sep 18, 2020
1 parent 9d02469 commit d3ec3e4
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 35 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========

[v0.7.3] - 2020-9-17
--------------------

### Added
- Add the `--choose` subcommand (#680)

### Misc
- Combine integration tests into single binary (#679)
- Document `--unsorted` flag in readme (#672)


[v0.7.2] - 2020-8-23
--------------------

Expand Down
62 changes: 31 additions & 31 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.7.2"
version = "0.7.3"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand Down
11 changes: 9 additions & 2 deletions man/just.1
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.16.
.TH JUST "1" "August 2020" "just 0.7.2" "Just Manual"
.TH JUST "1" "September 2020" "just 0.7.3" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.7.2
just 0.7.3
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
.SS "FLAGS:"
.TP
\fB\-\-choose\fR
Select a recipe to run using a binary. If `\-\-chooser` is not passed the chooser defaults
to the value of $JUST_CHOOSER, falling back to `fzf`
.TP
\fB\-\-clear\-shell\-args\fR
Clear shell arguments
.TP
Expand Down Expand Up @@ -61,6 +65,9 @@ Print help information
\fB\-V\fR, \fB\-\-version\fR
Print version information
.SS "OPTIONS:"
.TP
\fB\-\-chooser\fR <CHOOSER>
Override binary invoked by `\-\-choose`
.HP
\fB\-\-color\fR <COLOR>
.TP
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,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.7.2
const EXPECTED_HELP: &str = "just v0.7.3
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit d3ec3e4

Please sign in to comment.