Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[bumpversion]
current_version = 1.0.0
commit = True
tag = True
tag_name = v{new_version}
message = chore(release): v{new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}

[bumpversion:file:Cargo.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:CHANGELOG.md]
search = ## [Unreleased]
replace = ## [Unreleased]\n\n## [{new_version}] - {now:%Y-%m-%d}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

All notable changes to this project will be documented in this file.

## [Unreleased]\n\n## [1.0.0] - 2026-04-01

## [1.0.0] - 2026-04-01

### Added
- Job orchestration service with queueing, scheduling, and status tracking.
- Task dependencies and hold/resume controls for workflow coordination.
- Runtime metadata and endpoints to start/stop task-specific run commands.
- Voice prompt ingestion via STT gateway integration.

### Changed
- Hardened voice transcription path with request timeouts to prevent indefinite hangs.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "0.1.0"
version = "1.0.0"
license = "MIT"

[workspace.dependencies]
Expand Down
Loading