4 Commits

Author SHA1 Message Date
phundrak d2c48605aa chore(nix): update cargo hash value for Nix flake
Run checks and build archives / coverage-and-sonar (push) Successful in 9m7s
Run checks and build archives / build (linux-aarch64) (push) Successful in 7m3s
Run checks and build archives / build (windows-x86_64) (push) Successful in 8m16s
Run checks and build archives / build (linux-x86_64) (push) Successful in 10m8s
2026-06-19 13:13:34 +02:00
CI Bot 9f0fe71c3e chore(release): bump version to 1.1.1-dev [skip ci] 2026-06-14 16:18:46 +00:00
CI Bot 2bb7a46a43 chore(release): release 1.1.0 [skip ci] 2026-06-14 16:17:26 +00:00
phundrak 4ad6e944b2 ci(nix): don’t put a zip in a zip
Run checks and build archives / build (linux-aarch64) (push) Successful in 1m39s
Run checks and build archives / build (linux-x86_64) (push) Successful in 1m34s
Release / release (push) Successful in 5m4s
Release / build (linux-x86_64) (push) Failing after 2m19s
Release / build (linux-aarch64) (push) Failing after 2m23s
Run checks and build archives / coverage-and-sonar (push) Successful in 8m26s
Run checks and build archives / build (windows-x86_64) (push) Successful in 1m38s
Release / build (windows-x86_64) (push) Failing after 1m34s
2026-06-14 17:20:28 +02:00
5 changed files with 39 additions and 4 deletions
+32
View File
@@ -1,3 +1,35 @@
## [1.1.0] - 2026-06-14
### Features
- *(errors)* Preserve jj-emitted errors when loading config
- *(cli)* Add jj-lib version to version output
- *(nix)* Simplify flake.nix, remove devenv
- Implement --new flag
- *(references)* Add ticket reference footers
### Bug Fixes
- *(scope)* No new string allocation to count characters
### Refactor
- *(nix)* Simplify package declaration
- *(workflow)* Remove unnecessary async declarations
- *(BreakingChange)* Rename method ignore to is_absent
- *(prompter)* Simplify commit type selection
### Documentation
- *(contributing)* Clarifying and expanding AI requirements
- *(README)* Update the README to reflect new features
### Miscellaneous Tasks
- *(jj-lib)* Upgrade to jj-lib 0.40.0
- *(nix)* Add archive packages and overhaul CI workflows
- *(nix)* Temporary use of cargoHash instead of cargoLock.lockFile
- *(nix)* Dont put a zip in a zip
## [1.0.0] - 2026-03-25 ## [1.0.0] - 2026-03-25
### Features ### Features
Generated
+1 -1
View File
@@ -1804,7 +1804,7 @@ dependencies = [
[[package]] [[package]]
name = "jj-cz" name = "jj-cz"
version = "1.0.1-dev" version = "1.1.1-dev"
dependencies = [ dependencies = [
"assert_cmd", "assert_cmd",
"assert_fs", "assert_fs",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "jj-cz" name = "jj-cz"
version = "1.0.1-dev" version = "1.1.1-dev"
description = "Conventional commits for Jujutsu" description = "Conventional commits for Jujutsu"
edition = "2024" edition = "2024"
publish = true publish = true
+4 -1
View File
@@ -9,7 +9,10 @@ pkgs.stdenv.mkDerivation rec {
nativeBuildInputs = [pkgs.zip]; nativeBuildInputs = [pkgs.zip];
buildPhase = '' buildPhase = ''
mkdir -p $out/dist mkdir -p $out/dist
zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.* # zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.*
cp ${bin}/bin/jj-cz* $out/dist/
cp ${src}/README.md $out/dist/
cp ${src}/LICENSE.* $out/dist/
''; '';
installPhase = ""; installPhase = "";
dontConfigure = true; dontConfigure = true;
+1 -1
View File
@@ -10,7 +10,7 @@
inherit version; inherit version;
src = pkgs.lib.cleanSource ../.; src = pkgs.lib.cleanSource ../.;
# cargoLock.lockFile = ../Cargo.lock; # cargoLock.lockFile = ../Cargo.lock;
cargoHash = "sha256-yfKaqc+7lvxDukAXxazc57GFs386rr9vUsDk1pobLRM="; cargoHash = "sha256-pAAp3bq4zZwRYC5v7wX56KbBgA1q2C/Td5jX2ge+VpY=";
useNextest = true; useNextest = true;
meta = { meta = {
inherit (cargoToml.package) description homepage; inherit (cargoToml.package) description homepage;