Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
a5bec93228
|
|||
|
d1c67afd33
|
@@ -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)* Don’t put a zip in a zip
|
|
||||||
## [1.0.0] - 2026-03-25
|
## [1.0.0] - 2026-03-25
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
Generated
+1
-1
@@ -1804,7 +1804,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jj-cz"
|
name = "jj-cz"
|
||||||
version = "1.1.1-dev"
|
version = "1.0.1-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
"assert_fs",
|
"assert_fs",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "jj-cz"
|
name = "jj-cz"
|
||||||
version = "1.1.1-dev"
|
version = "1.0.1-dev"
|
||||||
description = "Conventional commits for Jujutsu"
|
description = "Conventional commits for Jujutsu"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
publish = true
|
publish = true
|
||||||
|
|||||||
@@ -71,8 +71,8 @@ revision, you can use the `-n` or `--new` flag.
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
jj-cz -n # equivalent of `jj-cz && jj new`
|
jj-cz -n # equivalent of `jj-cz && jj new`
|
||||||
jj-cz xs -n # 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 xs`
|
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.
|
You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active.
|
||||||
|
|||||||
@@ -9,10 +9,7 @@ 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
@@ -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-pAAp3bq4zZwRYC5v7wX56KbBgA1q2C/Td5jX2ge+VpY=";
|
cargoHash = "sha256-yfKaqc+7lvxDukAXxazc57GFs386rr9vUsDk1pobLRM=";
|
||||||
useNextest = true;
|
useNextest = true;
|
||||||
meta = {
|
meta = {
|
||||||
inherit (cargoToml.package) description homepage;
|
inherit (cargoToml.package) description homepage;
|
||||||
|
|||||||
Reference in New Issue
Block a user