Skip to content

Commit 0935bdd

Browse files
author
Tianshuang Ke
committed
chore(release): bump to v0.1.2
Workspace 0.1.1 -> 0.1.2; rtcom-core path-version dep mirrored. CHANGELOG promotes the [Unreleased] block into a new [0.1.2] section. Two entries: - Added: --lower-dtr / --raise-dtr / --lower-rts / --raise-rts flags (closes issue #1). - Fixed: -V now embeds the git hash for crates.io builds too — the previous "rtcom 0.1.1" without hash was the user-reported trigger for this release. Cargo.lock auto-bumped by cargo build.
1 parent eb1b3ba commit 0935bdd

3 files changed

Lines changed: 19 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2] — 2026-04-17
11+
1012
### Added
1113

1214
- `--lower-dtr` / `--raise-dtr` / `--lower-rts` / `--raise-rts`
@@ -18,6 +20,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1820
cached state stays honest and the first `^A t` / `^A g` toggle
1921
produces the right transition. Closes [#1].
2022

23+
### Fixed
24+
25+
- `rtcom -V` now embeds the git commit hash for `cargo install`
26+
builds too, not just local `cargo install --path` checkouts.
27+
v0.1.1 from crates.io showed `rtcom 0.1.1` (no hash) because
28+
`build.rs`'s `git rev-parse` had no `.git` to read. The release
29+
workflow now writes `crates/rtcom-cli/.commit-hash` before
30+
`cargo publish`; `build.rs` falls back to that file when git
31+
is unavailable. Tarball builds therefore show
32+
`rtcom 0.1.2 (abc12345)`.
33+
2134
[#1]: https://github.com/TrekMax/rtcom/issues/1
2235

2336
## [0.1.1] — 2026-04-17
@@ -166,6 +179,7 @@ use cases.
166179
- GitHub Actions CI matrix (ubuntu / macos / windows) running fmt,
167180
clippy `-D warnings`, tests, and `cargo doc -D warnings`.
168181

169-
[Unreleased]: https://github.com/TrekMax/rtcom/compare/v0.1.1...HEAD
182+
[Unreleased]: https://github.com/TrekMax/rtcom/compare/v0.1.2...HEAD
183+
[0.1.2]: https://github.com/TrekMax/rtcom/releases/tag/v0.1.2
170184
[0.1.1]: https://github.com/TrekMax/rtcom/releases/tag/v0.1.1
171185
[0.1.0]: https://github.com/TrekMax/rtcom/releases/tag/v0.1.0

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.1.1"
6+
version = "0.1.2"
77
edition = "2021"
88
rust-version = "1.85"
99
license = "Apache-2.0"
@@ -26,7 +26,7 @@ anyhow = "1"
2626
tracing = "0.1"
2727
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2828
bytes = "1"
29-
rtcom-core = { path = "crates/rtcom-core", version = "0.1.1" }
29+
rtcom-core = { path = "crates/rtcom-core", version = "0.1.2" }
3030

3131
[workspace.lints.rust]
3232
unsafe_code = "deny"

0 commit comments

Comments
 (0)