Skip to content

Commit

Permalink
Release 1.9.0 (#1426)
Browse files Browse the repository at this point in the history
- Bump version: 1.8.0 → 1.9.0
- Update changelog
- Update changelog contributor credits
- Update dependencies
- Update man page
- Update version references in readme
  • Loading branch information
casey authored Nov 25, 2022
1 parent e0794d0 commit efb9291
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 22 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changelog
=========

[1.9.0](https://github.com/casey/just/releases/tag/1.9.0) - 2022-11-25
----------------------------------------------------------------------

### Breaking Changes to Unstable Features
- Change `fallback` setting default to false (#1425)

### Added
- Hide recipes with `[private]` attribute (#1422)
- Add replace_regex function (#1393 by @miles170)
- Add [no-cd] attribute (#1400)

### Changed
- Omit shebang lines on Windows (#1417)

### Misc
- Placate clippy (#1423)
- Make include_shebang_line clearer (#1418)
- Use more secure cURL options in install.sh (#1416)
- Document how shebang recipes are executed (#1412)
- Fix typo: regec → regex (#1409)
- Use powershell.exe instead of pwsh.exe in readme (#1394 by @asdf8dfafjk)
- Expand alternatives and prior art in readme (#1401)
- Split up CI workflow (#1399)

[1.8.0](https://github.com/casey/just/releases/tag/1.8.0) - 2022-11-02
----------------------------------------------------------------------

Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "1.8.0"
version = "1.9.0"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand All @@ -25,7 +25,7 @@ ctrlc = { version = "3.1.1", features = ["termination"] }
derivative = "2.0.0"
dotenv = "0.15.0"
edit-distance = "2.0.0"
env_logger = "0.9.0"
env_logger = "0.9.3"
heck = "0.4.0"
lazy_static = "1.0.0"
lexiclean = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ run:
main.exe
```

#### Disabling Changing Directory<sup>master</sup>
#### Disabling Changing Directory<sup>1.9.0</sup>

`just` normally executes recipes with the current directory set to the
directory that contains the `justfile`. This can be disabled using the
Expand Down
4 changes: 2 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.49.2.
.TH JUST "1" "November 2022" "just 1.8.0" "Just Manual"
.TH JUST "1" "November 2022" "just 1.9.0" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 1.8.0
just 1.9.0
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand Down

0 comments on commit efb9291

Please sign in to comment.