Skip to content

Commit

Permalink
Release v0.9.3 (#832)
Browse files Browse the repository at this point in the history
- Bump version: 0.9.2 → 0.9.3
- Update dependencies
- Update changelog
- Update man page
- Update config test
  • Loading branch information
casey authored May 16, 2021
1 parent 7be66f8 commit 48f0086
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 11 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Changelog
=========

[v0.9.3] - 2021-5-16
--------------------

### Added
- Add shebang support for 'cmd.exe' (#828)
- Add `.exe` to powershell scripts (#826)
- Add the `--command` subcommand (#824)

### Fixed
- Fix bang lexing and placate clippy (#821)

### Misc
- Fixed missing close apostrophe in GRAMMAR.md (#830)
- Make 'else' keyword in grammar (#829)
- Add forbid script (#827)
- Remove `summary` feature (#823)
- Document that just is now in Arch official repo (#814)
- Fix changelog years (#813)


[v0.9.2] - 2021-5-02
--------------------

Expand Down
14 changes: 7 additions & 7 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.9.2"
version = "0.9.3"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
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,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.15.
.TH JUST "1" "May 2021" "just 0.9.2" "Just Manual"
.TH JUST "1" "May 2021" "just 0.9.3" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.9.2
just 0.9.3
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand Down Expand Up @@ -48,6 +48,9 @@ Don't highlight echoed recipe lines in bold
\fB\-q\fR, \fB\-\-quiet\fR
Suppress all output
.TP
\fB\-\-shell\-command\fR
Invoke <COMMAND> with the shell used to run recipe lines and backticks
.TP
\fB\-\-summary\fR
List names of available recipes
.TP
Expand Down Expand Up @@ -75,6 +78,10 @@ Override binary invoked by `\-\-choose`
Print colorful output [default: auto]
[possible values: auto, always, never]
.HP
\fB\-c\fR, \fB\-\-command\fR <COMMAND>
.IP
Run an arbitrary command with the working directory, `.env`, overrides, and exports set
.HP
\fB\-\-completions\fR <SHELL>
.IP
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell, elvish]
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,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.9.2
const EXPECTED_HELP: &str = "just v0.9.3
Casey Rodarmor <casey@rodarmor.com>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 48f0086

Please sign in to comment.