Skip to content

Commit a5aa5f1

Browse files
authored
Release 1.45.0 (#3008)
- Bump version: 1.44.1 β†’ 1.45.0 - Update changelog - Update changelog contributor credits - Update dependencies - Update version references in readme
1 parent 736438d commit a5aa5f1

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

β€Ž.github/workflows/release.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,6 @@ jobs:
207207
uses: peaceiris/actions-gh-pages@v4
208208
if: ${{ !needs.prerelease.outputs.value }}
209209
with:
210-
github_token: ${{secrets.GITHUB_TOKEN}}
210+
github_token: ${{ secrets.GITHUB_TOKEN }}
211211
publish_branch: gh-pages
212212
publish_dir: www

β€ŽCHANGELOG.mdβ€Ž

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

4+
[1.45.0](https://github.com/casey/just/releases/tag/1.45.0) - 2025-12-10
5+
------------------------------------------------------------------------
6+
7+
### Added
8+
- Allow requiring recipe arguments to match regular expression patterns ([#3000](https://github.com/casey/just/pull/3000) by [casey](https://github.com/casey))
9+
10+
### Fixed
11+
- Allow shell-expanded strings in attributes ([#3007](https://github.com/casey/just/pull/3007) by [casey](https://github.com/casey))
12+
- Fix arg pattern anchoring ([#3002](https://github.com/casey/just/pull/3002) by [casey](https://github.com/casey))
13+
14+
### Misc
15+
- Use non-capturing group in arg pattern regex ([#3006](https://github.com/casey/just/pull/3006) by [casey](https://github.com/casey))
16+
- Remove redundant type annotation ([#3004](https://github.com/casey/just/pull/3004) by [casey](https://github.com/casey))
17+
418
[1.44.1](https://github.com/casey/just/releases/tag/1.44.1) - 2025-12-09
519
------------------------------------------------------------------------
620

β€ŽCargo.lockβ€Ž

Lines changed: 1 addition & 1 deletion
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.44.1"
3+
version = "1.45.0"
44
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
55
autotests = false
66
categories = ["command-line-utilities", "development-tools"]

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2731,7 +2731,7 @@ foo $bar:
27312731
```
27322732

27332733
Parameters may be constrained to match regular expression patterns using the
2734-
`[arg("name", pattern="pattern")]` attribute<sup>master</sup>:
2734+
`[arg("name", pattern="pattern")]` attribute<sup>1.45.0</sup>:
27352735

27362736
```just
27372737
[arg('n', pattern='\d+')]

0 commit comments

Comments
Β (0)