Skip to content

Commit

Permalink
Release 0.10.3 (#1014)
Browse files Browse the repository at this point in the history
- Bump version: 0.10.2 → 0.10.3
- Update changelog
- Update config test
- Update dependencies
- Update man page
  • Loading branch information
casey authored Oct 31, 2021
1 parent df5682d commit 9987a0b
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 40 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
Changelog
=========

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

### Added
- Add `trim_end(s)` and `trim_start(s)` functions (#999)
- Add more string manipulation functions (#998)

### Changed
- Make `join` accept two or more arguments (#1000)

### Misc
- Add alternatives and prior art section to readme (#1008)
- Fix readme `make`'s not correctly displayed (#1007)
- Document the default recipe (#1006)
- Document creating user justfile recipe aliases (#1005)
- Fix readme typo (#1004)
- Add packaging status table to readme (#1003)
- Reword `sh` not found error messages (#1002)
- Only pass +crt-static to cargo build (#997)
- Stop using tabs in justfile in editorconfig (#996)
- Use consistent rustflags formatting (#994)
- Use `cargo build` instead of `cargo rustc` (#993)
- Don't skip variables in variable iterator (#991)
- Remove deprecated equals error (#985)

[0.10.2](https://github.com/casey/just/releases/tag/0.10.2) - 2021-9-26
-----------------------------------------------------------------------

Expand Down
52 changes: 27 additions & 25 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.10.2"
version = "0.10.3"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand Down Expand Up @@ -29,7 +29,7 @@ libc = "0.2.0"
log = "0.4.4"
regex = "1.5.4"
snafu = "0.6.0"
strum_macros = "0.21.1"
strum_macros = "0.22.0"
target = "2.0.0"
tempfile = "3.0.0"
typed-arena = "2.0.1"
Expand All @@ -44,7 +44,7 @@ version = "3.1.1"
features = ["termination"]

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

[dev-dependencies]
Expand Down
21 changes: 10 additions & 11 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" "September 2021" "just 0.10.2" "Just Manual"
.TH JUST "1" "October 2021" "just 0.10.3" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.10.2
just 0.10.3
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand All @@ -14,9 +14,9 @@ just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
Print changelog
.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 @@ -28,8 +28,8 @@ Print what just would do without doing it
Print entire 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,8 +57,7 @@ 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 @@ -96,8 +95,8 @@ 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>
.IP
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,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.2
const EXPECTED_HELP: &str = "just 0.10.3
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 9987a0b

Please sign in to comment.