chore(release): release 1.0.0 [skip ci]

This commit is contained in:
CI Bot
2026-03-25 14:57:29 +00:00
parent 7603e331bd
commit 82aeaec37b
3 changed files with 39 additions and 2 deletions

37
CHANGELOG.md Normal file
View File

@@ -0,0 +1,37 @@
## [1.0.0] - 2026-03-25
### Features
- *(deps)* Add project dependencies
- Create module structure
- *(error)* Create base Error enum
- *(CommitType)* Implement CommitType and tests
- *(Scope)* Implement Scope and tests
- *(Description)* Implement Description and tests
- *(ConventionalCommit)* Implement ConventionalCommit and tests
- *(errors)* Update error types
- *(JjLib)* JjLib implementation
- Complete JjLib describe implementation
- Add interactive conventional commit workflow with jj-lib backend
- Implement breaking change input
- *(prompt)* Add support for wide characters in prompt preview
- Edit body for commit messages
### Bug Fixes
- *(commit)* Limit complete line limit to 72 chars
- *(config)* Load user config
- *(prompt)* Prompt preview padding
- *(message)* Use unicode char count for text width
### Documentation
- Add contributing guidelines
- Actually write README
### Miscellaneous Tasks
- *(build)* Preparing for CI
- *(build)* Add Windows build, store release binaries
- Remove tests, redundant with coverage
- *(artifacts)* Simplify uploaded artifacts

2
Cargo.lock generated
View File

@@ -1650,7 +1650,7 @@ dependencies = [
[[package]]
name = "jj-cz"
version = "1.0.0-dev"
version = "1.0.0"
dependencies = [
"assert_cmd",
"assert_fs",

View File

@@ -1,6 +1,6 @@
[package]
name = "jj-cz"
version = "1.0.0-dev"
version = "1.0.0"
description = "Conventional commits for Jujutsu"
edition = "2024"
publish = true