Skip to content

Commit a95cc1d

Browse files
committed
Release v0.3.5
1 parent 03deb4d commit a95cc1d

6 files changed

Lines changed: 16 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.3.5 - 2026-03-28
6+
7+
- created `~/.config/ibus-voice/config.toml` automatically on first run when the default user config is missing
8+
- created default `dictionary.txt`, `system_prompt.txt`, and `user_prompt.txt` beside the generated config on first run
9+
- documented the new first-run bootstrap behavior for runtime config loading
10+
511
## 0.3.4 - 2026-03-28
612

713
- fixed the package workflow YAML so GitHub Actions can parse and run the architecture verification steps

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ If you are building this project, useful implementation areas will likely includ
6262
- Speech recognition backend adapters
6363
- Packaging and installation for desktop environments
6464

65-
## v0.3.4 Status
65+
## v0.3.5 Status
6666

67-
`v0.3.4` is the current packaged alpha milestone. It includes:
67+
`v0.3.5` is the current packaged alpha milestone. It includes:
6868

6969
- config loading
7070
- a push-to-talk engine state machine
@@ -85,7 +85,7 @@ Recent design work in this repository has also started closing feature gaps iden
8585

8686
## Release Notes
8787

88-
For the `v0.3.4` milestone:
88+
For the `v0.3.5` milestone:
8989

9090
- supported runtime shape is Python 3.11+ on Linux with IBus
9191
- the interaction model is hold-to-talk dictation: recording runs only while the configured hotkey chord is held
@@ -94,7 +94,7 @@ For the `v0.3.4` milestone:
9494
- transcript correction is optional and falls back to raw text if correction fails
9595
- package artifacts can be built locally as `.deb` and `.rpm`
9696

97-
Known limitations for `v0.3.4`:
97+
Known limitations for `v0.3.5`:
9898

9999
- desktop integration has unit coverage but limited live distro validation
100100
- local speech support depends on an installed `coli` binary for the ListenHub provider

docs/implementation/release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Release Process
22

3-
## v0.3.4 Baseline
3+
## v0.3.5 Baseline
44

5-
This repository now treats `0.3.4` as the current packaged alpha release.
5+
This repository now treats `0.3.5` as the current packaged alpha release.
66

77
Release expectations:
88

@@ -19,4 +19,4 @@ Release expectations:
1919
4. Run `./scripts/build-rpm.sh` on a system with `rpmbuild`.
2020
5. Verify artifacts in `.dist/packages/`.
2121
6. Review `README.md`, `docs/user/getting-started.md`, and `CHANGELOG.md`.
22-
7. Create the `v0.3.4` tag after the release commit is finalized.
22+
7. Create the `v0.3.5` tag after the release commit is finalized.

docs/user/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
`ibus-voice` `v0.3.4` is the current early alpha release.
3+
`ibus-voice` `v0.3.5` is the current early alpha release.
44

55
System install for GNOME and normal desktop use:
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ibus-voice"
7-
version = "0.3.4"
7+
version = "0.3.5"
88
description = "Voice input support for IBus on Linux"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/ibus_voice/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
"__version__",
55
]
66

7-
__version__ = "0.3.4"
7+
__version__ = "0.3.5"

0 commit comments

Comments
 (0)