Skip to content

Commit

Permalink
Release 0.10.4 (#1031)
Browse files Browse the repository at this point in the history
- Bump version: 0.10.3 → 0.10.4
- Update changelog
- Update config test
- Update dependencies
- Update man page
  • Loading branch information
casey authored Nov 22, 2021
1 parent c49d534 commit 1841eb1
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 45 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

[0.10.4](https://github.com/casey/just/releases/tag/0.10.4) - 2021-11-21
------------------------------------------------------------------------

### Added
- Add `--dump-format json` (#992)
- Add `quote(s)` function for escaping strings (#1022)
- fmt: check formatting with `--check` (#1001)

### Misc
- Refactor github actions (#1028)
- Fix readme formatting (#1030)
- Use ps1 extension for pwsh shebangs (#1027)
- Ignore leading byte order mark in source files (#1021)
- Add color to `just --fmt --check` diff (#1015)

[0.10.3](https://github.com/casey/just/releases/tag/0.10.3) - 2021-10-30
------------------------------------------------------------------------

Expand Down
58 changes: 30 additions & 28 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.10.3"
version = "0.10.4"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "CC0-1.0"
Expand Down Expand Up @@ -34,8 +34,7 @@ serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = "1.0.68"
similar = { version = "2.1.0", features = ["unicode"] }
snafu = "0.6.0"
strum = { version = "0.22.0", features = ["derive"] }
strum_macros = "0.22.0"
strum = { version = "0.23.0", features = ["derive"] }
target = "2.0.0"
tempfile = "3.0.0"
typed-arena = "2.0.1"
Expand Down
36 changes: 23 additions & 13 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.48.5.
.TH JUST "1" "October 2021" "just 0.10.3" "Just Manual"
.TH JUST "1" "November 2021" "just 0.10.4" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.10.3
just 0.10.4
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand All @@ -13,10 +13,14 @@ just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
\fB\-\-changelog\fR
Print changelog
.TP
\fB\-\-check\fR
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted
correctly. Exits with 1 and prints a diff if formatting is required.
.TP
\fB\-\-choose\fR
Select one or more recipes to run using a binary. If `\-\-chooser` is not
passed the chooser defaults to the value of $JUST_CHOOSER, falling back
to `fzf`
Select one or more recipes 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
Expand All @@ -25,11 +29,11 @@ Clear shell arguments
Print what just would do without doing it
.TP
\fB\-\-dump\fR
Print entire justfile
Print justfile
.TP
\fB\-e\fR, \fB\-\-edit\fR
Edit justfile with editor given by $VISUAL or $EDITOR, falling back to
`vim`
Edit justfile with editor given by $VISUAL or $EDITOR, falling back
to `vim`
.TP
\fB\-\-evaluate\fR
Evaluate and print all variables. If a variable name is given as an
Expand Down Expand Up @@ -57,7 +61,8 @@ Don't highlight echoed recipe lines in bold
Suppress all output
.TP
\fB\-\-shell\-command\fR
Invoke <COMMAND> with the shell used to run recipe lines and backticks
Invoke <COMMAND> with the shell used to run recipe lines and
backticks
.TP
\fB\-\-summary\fR
List names of available recipes
Expand Down Expand Up @@ -95,16 +100,21 @@ Run an arbitrary command with the working directory, `.env`, overrides, and expo
.HP
\fB\-\-completions\fR <SHELL>
.IP
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell,
elvish]
Print shell completion script for <SHELL> [possible values: zsh, bash, fish,
powershell, elvish]
.HP
\fB\-\-dotenv\-filename\fR <DOTENV_FILENAME>
\fB\-\-dotenv\-filename\fR <DOTENV\-FILENAME>
.IP
Search for environment file named <DOTENV\-FILENAME> instead of `.env`
.HP
\fB\-\-dotenv\-path\fR <DOTENV_PATH>
\fB\-\-dotenv\-path\fR <DOTENV\-PATH>
.IP
Load environment file at <DOTENV\-PATH> instead of searching for one
.HP
\fB\-\-dump\-format\fR <FORMAT>
.TP
Dump justfile as <FORMAT> [default: just]
[possible values: just, json]
.TP
\fB\-f\fR, \fB\-\-justfile\fR <JUSTFILE>
Use <JUSTFILE> as justfile
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,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.10.3
const EXPECTED_HELP: &str = "just 0.10.4
Casey Rodarmor <casey@rodarmor.com>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 1841eb1

Please sign in to comment.