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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@1.88.0
with:
components: clippy
components: rustfmt, clippy
- run: make check
- run: make release-check

Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

All notable changes to `sysprims-pty` are documented here.

## 0.9.1 - 2026-09-01

- First public release for the crates.io publication.
- Adds Rustfmt to the tag release workflow package gate so `make check` is
fully provisioned on Rust 1.88.0.
- Leaves `v0.9.0` as a non-release annotated tag with no GitHub release and no
crates.io publication.

## 0.9.0 - 2026-09-01

- First public `sysprims-pty` release.
- Publishes the `sysprims-pty` crate while retaining the `portable_pty`
- Initial release-preparation tag. No GitHub release or crates.io publication.
- Configures the `sysprims-pty` crate while retaining the `portable_pty`
library target for migration compatibility.
- Uses registry-resolvable `sysprims-session` and `sysprims-timeout` 0.2.3
dependencies.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysprims-pty"
version = "0.9.0"
version = "0.9.1"
authors = ["Wez Furlong", "3 Leaps, LLC"]
edition = "2018"
rust-version = "1.88.0"
Expand All @@ -21,7 +21,7 @@ include = [
"LICENSE-MIT",
"CHANGELOG.md",
"RELEASE_NOTES.md",
"docs/releases/v0.9.0.md",
"docs/releases/v0.9.1.md",
"src/**/*.rs",
"tests/**/*.rs",
"examples/**/*.rs",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ an owned, verifiable process lifecycle.

The package name is `sysprims-pty`. The library target is `portable_pty`,
so existing `portable_pty` imports can keep working after a package rename.
The first public version coordinate is `0.9.0`.
The first public version coordinate is `0.9.1`.

## What you can build

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ handled:
Required local signing environment:

- `SYSPRIMS_PTY_RELEASE_TAG`: release tag with the leading `v`, for example
`v0.9.0`.
`v0.9.1`.
- `SYSPRIMS_PTY_MINISIGN_KEY`: minisign secret key path.
- `SYSPRIMS_PTY_MINISIGN_PUB`: minisign public key path. If omitted, the
tooling derives it from `SYSPRIMS_PTY_MINISIGN_KEY` by replacing `.key` with
Expand Down
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

Release-specific notes are kept in `docs/releases/`.

- [v0.9.1](docs/releases/v0.9.1.md)
- [v0.9.0](docs/releases/v0.9.0.md)
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.1
20 changes: 5 additions & 15 deletions docs/releases/v0.9.0.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
# sysprims-pty v0.9.0

First public release of `sysprims-pty`.
Non-release annotated tag retained for provenance.

The crate provides cross-platform PTY APIs with sysprims-backed containment and
keeps the library target named `portable_pty` for source-level migration from
compatible callers.

## Distribution
## Status

- Crate package: `sysprims-pty = "=0.9.0"`
- Library import: `portable_pty`
- License: MIT
No GitHub release was published for this tag, and no crates.io package was
published at `0.9.0`.

## Release assets

The GitHub release carries provenance assets for this source release:

- `LICENSE-MIT`
- CycloneDX SBOM
- release notes
- checksum manifests
- checksum signatures
- public signing keys
The first public release coordinate is `v0.9.1`.
29 changes: 29 additions & 0 deletions docs/releases/v0.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# sysprims-pty v0.9.1

First public release for `sysprims-pty`.

The crate provides cross-platform PTY APIs with sysprims-backed containment and
keeps the library target named `portable_pty` for source-level migration from
compatible callers.

## Distribution

- Crate package: `sysprims-pty = "=0.9.1"`
- Library import: `portable_pty`
- License: MIT

## Release assets

The GitHub release carries provenance assets for this source release:

- `LICENSE-MIT`
- CycloneDX SBOM
- release notes
- checksum manifests
- checksum signatures
- public signing keys

## Notes

The earlier `v0.9.0` tag is not a public release. It remains an annotated tag
with no GitHub release and no crates.io publication.