Skip to content

Commit 023b126

Browse files
authored
Release 1.31.0 (#2251)
- Bump version: 1.30.1 → 1.31.0 - Update changelog - Update changelog contributor credits - Update dependencies - Update version references in readme
1 parent 687007a commit 023b126

File tree

5 files changed

+57
-47
lines changed

5 files changed

+57
-47
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changelog
22
=========
33

4+
[1.31.0](https://github.com/casey/just/releases/tag/1.31.0) - 2024-07-14
5+
------------------------------------------------------------------------
6+
7+
### Stabilized
8+
- Stabilize modules ([#2250](https://github.com/casey/just/pull/2250) by [casey](https://github.com/casey))
9+
10+
### Added
11+
- Allow `mod` path to be directory containing module source ([#2238](https://github.com/casey/just/pull/2238) by [casey](https://github.com/casey))
12+
- Allow enabling unstable features with `set unstable` ([#2237](https://github.com/casey/just/pull/2237) by [casey](https://github.com/casey))
13+
- Allow abbreviating functions ending in `_directory` to `_dir` ([#2235](https://github.com/casey/just/pull/2235) by [casey](https://github.com/casey))
14+
15+
### Fixed
16+
- Lexiclean search directory so `..` does not check the current directory ([#2236](https://github.com/casey/just/pull/2236) by [casey](https://github.com/casey))
17+
18+
### Misc
19+
- Print space before submodules in `--list` with groups ([#2244](https://github.com/casey/just/pull/2244) by [casey](https://github.com/casey))
20+
421
[1.30.1](https://github.com/casey/just/releases/tag/1.30.1) - 2024-07-06
522
------------------------------------------------------------------------
623

Cargo.lock

Lines changed: 34 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "just"
3-
version = "1.30.1"
3+
version = "1.31.0"
44
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
55
autotests = false
66
categories = ["command-line-utilities", "development-tools"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ foo:
820820
| `positional-arguments` | boolean | `false` | Pass positional arguments. |
821821
| `shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
822822
| `tempdir` | string | - | Create temporary directories in `tempdir` instead of the system default temporary directory. |
823-
| `unstable`<sup>master</sup> | boolean | `false` | Enable unstable features. |
823+
| `unstable`<sup>1.31.0</sup> | boolean | `false` | Enable unstable features. |
824824
| `windows-powershell` | boolean | `false` | Use PowerShell on Windows as default shell. (Deprecated. Use `windows-shell` instead. |
825825
| `windows-shell` | `[COMMAND, ARGS…]` | - | Set the command used to invoke recipes and evaluate backticks. |
826826

@@ -3156,7 +3156,7 @@ Missing source files for optional imports do not produce an error.
31563156

31573157
A `justfile` can declare modules using `mod` statements.
31583158

3159-
`mod` statements were stabilized in `just`<sup>master</sup>. In earlier
3159+
`mod` statements were stabilized in `just`<sup>1.31.0</sup>. In earlier
31603160
versions, you'll need to use the `--unstable` flag, `set unstable`, or set the
31613161
`JUST_UNSTABLE` environment variable to use them.
31623162

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ check: fmt clippy test forbid
6666
VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1`
6767
grep "^\[$VERSION\]" CHANGELOG.md
6868

69+
outdated:
70+
cargo outdated -R
71+
6972
# publish current GitHub master branch
7073
publish:
7174
#!/usr/bin/env bash

0 commit comments

Comments
 (0)