Browse Source

chore: eza v0.22.1 changelogs, version bump

Signed-off-by: Christina Sørensen <ces@fem.gg>
Christina Sørensen 5 months ago
parent
commit
a362025dd5
4 changed files with 14 additions and 4 deletions
  1. 7 1
      CHANGELOG.md
  2. 1 1
      Cargo.lock
  3. 1 1
      Cargo.toml
  4. 5 1
      justfile

+ 7 - 1
CHANGELOG.md

@@ -6,7 +6,7 @@ SPDX-License-Identifier: EUPL-1.2
 -->
 # Changelog
 
-## [0.22.0] - 2025-07-03
+## [0.22.1] - 2025-07-12
 
 ### Bug Fixes
 
@@ -19,12 +19,18 @@ SPDX-License-Identifier: EUPL-1.2
 ### Features
 
 - [**breaking**] Define -d/--treat-dirs-as-files behavior, tests
+- Refresh icon set with new glyphs and additions
+
+### Miscellaneous Tasks
+
+- Eza v0.22.0 changelogs, version bump
 
 ### Build
 
 - Bump phf from 0.11.3 to 0.12.1
 - Cargo bump 2025-07-03
 - Flake bump 2025-07-03
+- Bump windows-sys from 0.59.0 to 0.60.2
 
 ### Ci
 

+ 1 - 1
Cargo.lock

@@ -434,7 +434,7 @@ dependencies = [
 
 [[package]]
 name = "eza"
-version = "0.22.0"
+version = "0.22.1"
 dependencies = [
  "ansi-width",
  "backtrace",

+ 1 - 1
Cargo.toml

@@ -29,7 +29,7 @@ readme = "README.md"
 homepage = "https://github.com/eza-community/eza"
 license = "EUPL-1.2"
 repository = "https://github.com/eza-community/eza"
-version = "0.22.0"
+version = "0.22.1"
 
 
 [package.metadata.deb]

+ 5 - 1
justfile

@@ -119,7 +119,11 @@ genDemo:
 #    release    #
 #---------------#
 
-new_version := "$(convco version --bump)"
+# To override the version, pass it as an argument before the recipe:
+# e.g. just version=1.2.3 release
+# If version is not set, it will be determined by convco.
+version := ""
+new_version := if version == "" { "$(convco version --bump)" } else { version }
 
 # If you're not cafkafk and she isn't dead, don't run this!
 #