Skip to content

Commit a362025

Browse files
committed
chore: eza v0.22.1 changelogs, version bump
Signed-off-by: Christina Sørensen <ces@fem.gg>
1 parent a64a9da commit a362025

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SPDX-License-Identifier: EUPL-1.2
66
-->
77
# Changelog
88

9-
## [0.22.0] - 2025-07-03
9+
## [0.22.1] - 2025-07-12
1010

1111
### Bug Fixes
1212

@@ -19,12 +19,18 @@ SPDX-License-Identifier: EUPL-1.2
1919
### Features
2020

2121
- [**breaking**] Define -d/--treat-dirs-as-files behavior, tests
22+
- Refresh icon set with new glyphs and additions
23+
24+
### Miscellaneous Tasks
25+
26+
- Eza v0.22.0 changelogs, version bump
2227

2328
### Build
2429

2530
- Bump phf from 0.11.3 to 0.12.1
2631
- Cargo bump 2025-07-03
2732
- Flake bump 2025-07-03
33+
- Bump windows-sys from 0.59.0 to 0.60.2
2834

2935
### Ci
3036

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
@@ -29,7 +29,7 @@ readme = "README.md"
2929
homepage = "https://github.com/eza-community/eza"
3030
license = "EUPL-1.2"
3131
repository = "https://github.com/eza-community/eza"
32-
version = "0.22.0"
32+
version = "0.22.1"
3333

3434

3535
[package.metadata.deb]

justfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,11 @@ genDemo:
119119
# release #
120120
#---------------#
121121

122-
new_version := "$(convco version --bump)"
122+
# To override the version, pass it as an argument before the recipe:
123+
# e.g. just version=1.2.3 release
124+
# If version is not set, it will be determined by convco.
125+
version := ""
126+
new_version := if version == "" { "$(convco version --bump)" } else { version }
123127

124128
# If you're not cafkafk and she isn't dead, don't run this!
125129
#

0 commit comments

Comments
 (0)