2 Commits

Author SHA1 Message Date
phundrak a5bec93228 feat(references): add ticket reference footers
Run checks and build archives / build (linux-aarch64) (push) Successful in 6m58s
Run checks and build archives / coverage-and-sonar (push) Successful in 5m36s
Run checks and build archives / build (linux-x86_64) (push) Successful in 8m14s
Run checks and build archives / build (windows-x86_64) (push) Successful in 6m56s
Refs: #4
2026-06-14 16:56:51 +02:00
phundrak d1c67afd33 docs(README): update the README to reflect new features
Refs: #11
2026-06-14 16:56:51 +02:00
6 changed files with 6 additions and 41 deletions
-32
View File
@@ -1,35 +1,3 @@
## [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.1.1-dev"
version = "1.0.1-dev"
dependencies = [
"assert_cmd",
"assert_fs",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "jj-cz"
version = "1.1.1-dev"
version = "1.0.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 xs`
jj-cz -n xs # equivalent of `jj-cz xs && jj new xs`
jj-cz xs -n # equivalent of `jj-cz xs && jj new`
jj-cz -n xs # equivalent of `jj-cz xs && jj new`
```
You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active.
+1 -4
View File
@@ -9,10 +9,7 @@ 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.*
cp ${bin}/bin/jj-cz* $out/dist/
cp ${src}/README.md $out/dist/
cp ${src}/LICENSE.* $out/dist/
zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.*
'';
installPhase = "";
dontConfigure = true;
+1 -1
View File
@@ -10,7 +10,7 @@
inherit version;
src = pkgs.lib.cleanSource ../.;
# cargoLock.lockFile = ../Cargo.lock;
cargoHash = "sha256-pAAp3bq4zZwRYC5v7wX56KbBgA1q2C/Td5jX2ge+VpY=";
cargoHash = "sha256-yfKaqc+7lvxDukAXxazc57GFs386rr9vUsDk1pobLRM=";
useNextest = true;
meta = {
inherit (cargoToml.package) description homepage;