6 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
phundrak bd4aaff3f3 feat(references): add ticket reference footers
Run checks and build archives / build (linux-x86_64) (push) Has been cancelled
Run checks and build archives / build (windows-x86_64) (push) Has been cancelled
Run checks and build archives / build (linux-aarch64) (push) Has been cancelled
Run checks and build archives / coverage-and-sonar (push) Successful in 5m29s
Refs: #4
2026-06-14 17:13:01 +02:00
phundrak e6ac6890b2 docs(README): update the README to reflect new features
Refs: #11
2026-06-14 17:13:01 +02:00
6 changed files with 41 additions and 6 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
### Features
Generated
+1 -1
View File
@@ -1804,7 +1804,7 @@ dependencies = [
[[package]]
name = "jj-cz"
version = "1.0.1-dev"
version = "1.1.1-dev"
dependencies = [
"assert_cmd",
"assert_fs",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "jj-cz"
version = "1.0.1-dev"
version = "1.1.1-dev"
description = "Conventional commits for Jujutsu"
edition = "2024"
publish = true
+2 -2
View File
@@ -71,8 +71,8 @@ revision, you can use the `-n` or `--new` flag.
```sh
jj-cz -n # equivalent of `jj-cz && jj new`
jj-cz xs -n # equivalent of `jj-cz xs && jj new`
jj-cz -n xs # equivalent of `jj-cz xs && jj new`
jj-cz xs -n # equivalent of `jj-cz xs && jj new xs`
jj-cz -n xs # equivalent of `jj-cz xs && jj new xs`
```
You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active.
+4 -1
View File
@@ -9,7 +9,10 @@ pkgs.stdenv.mkDerivation rec {
nativeBuildInputs = [pkgs.zip];
buildPhase = ''
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 = "";
dontConfigure = true;
+1 -1
View File
@@ -10,7 +10,7 @@
inherit version;
src = pkgs.lib.cleanSource ../.;
# cargoLock.lockFile = ../Cargo.lock;
cargoHash = "sha256-yfKaqc+7lvxDukAXxazc57GFs386rr9vUsDk1pobLRM=";
cargoHash = "sha256-pAAp3bq4zZwRYC5v7wX56KbBgA1q2C/Td5jX2ge+VpY=";
useNextest = true;
meta = {
inherit (cargoToml.package) description homepage;