Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.20.0 #1793

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

[1.20.0](https://github.com/casey/just/releases/tag/1.20.0) - 2023-12-28
------------------------------------------------------------------------

### Added
- Allow mod statements with path to source file ([#1786](https://github.com/casey/just/pull/1786))

### Changed
- Expand tilde in import and module paths ([#1792](https://github.com/casey/just/pull/1792))
- Override imported recipes ([#1790](https://github.com/casey/just/pull/1790))
- Run recipes with working directory set to submodule directory ([#1788](https://github.com/casey/just/pull/1788))

### Misc
- Document import override behavior ([#1791](https://github.com/casey/just/pull/1791))
- Document submodule working directory ([#1789](https://github.com/casey/just/pull/1789))

[1.19.0](https://github.com/casey/just/releases/tag/1.19.0) - 2023-12-27
------------------------------------------------------------------------

Expand Down
12 changes: 6 additions & 6 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 = "1.19.0"
version = "1.20.0"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
autotests = false
categories = ["command-line-utilities", "development-tools"]
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.3.
.TH JUST "1" "December 2023" "just 1.19.0" "Just Manual"
.TH JUST "1" "December 2023" "just 1.20.0" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 1.19.0
just 1.20.0
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand Down
Loading