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
16 changes: 8 additions & 8 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.5.0-beta.1"
version = "0.5.0"
authors = ["Alex Ostrovski <ostrovski.alex@gmail.com>"]
edition = "2024"
rust-version = "1.86"
Expand Down Expand Up @@ -40,7 +40,7 @@ quick-xml = "0.41.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.27.0"
test-casing = "=0.2.0-beta.1"
test-casing = "0.2.0"
toml = "1.1.2"
tracing = "0.1.44"
tracing-capture = "0.1.0"
Expand All @@ -49,8 +49,8 @@ unicode-width = "0.2"
version-sync = "0.9.2"

# Workspace dependencies
styled-str = { version = "=0.5.0-beta.1", path = "crates/styled-str" }
term-transcript = { version = "=0.5.0-beta.1", path = "crates/term-transcript" }
styled-str = { version = "0.5.0", path = "crates/styled-str" }
term-transcript = { version = "0.5.0", path = "crates/term-transcript" }

[workspace.lints.rust]
missing_docs = "warn"
Expand Down
10 changes: 10 additions & 0 deletions crates/styled-str/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file.
The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## 0.5.0 - 2026-07-18

The initial release of `styled-str`.
2 changes: 1 addition & 1 deletion crates/styled-str/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add this to your `Crate.toml`:

```toml
[dependencies]
styled-str = "0.5.0-beta.1"
styled-str = "0.5.0"
```

Basic usage:
Expand Down
2 changes: 1 addition & 1 deletion crates/styled-str/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
//! [CSI]: https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_(Control_Sequence_Introducer)_sequences

// Documentation settings
#![doc(html_root_url = "https://docs.rs/styled-str/0.5.0-beta.1")]
#![doc(html_root_url = "https://docs.rs/styled-str/0.5.0")]
// Conditional compilation
#![cfg_attr(not(feature = "std"), no_std)]
extern crate core;
Expand Down
4 changes: 4 additions & 0 deletions crates/term-transcript-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [Unreleased]

## 0.5.0 - 2026-07-18

*(No substantial changes compared to the [0.5.0-beta.1 release](#050-beta1---2026-02-04))*

## 0.5.0-beta.1 - 2026-02-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/term-transcript-cli/tests/snapshots/test-fail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions crates/term-transcript/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [Unreleased]

## 0.5.0 - 2026-07-18

*(All changes are relative compared to the [0.5.0-beta.1 release](#050-beta1---2026-02-04))*

### Added

- Add ability to test captured CLI transcripts.
Expand Down
2 changes: 1 addition & 1 deletion crates/term-transcript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add this to your `Crate.toml`:

```toml
[dependencies]
term-transcript = "0.5.0-beta.1"
term-transcript = "0.5.0"
```

Example of usage:
Expand Down
2 changes: 1 addition & 1 deletion crates/term-transcript/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
//! ```

// Documentation settings.
#![doc(html_root_url = "https://docs.rs/term-transcript/0.5.0-beta.1")]
#![doc(html_root_url = "https://docs.rs/term-transcript/0.5.0")]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(feature = "portable-pty")]
Expand Down
2 changes: 1 addition & 1 deletion crates/term-transcript/src/svg/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ pub(super) struct StyledLine<'a> {
/// let expected_json = serde_json::json!({
/// "creator": {
/// "name": "term-transcript",
/// "version": "0.5.0-beta.1",
/// "version": "0.5.0",
/// "repo": "https://github.com/slowli/term-transcript",
/// },
/// "width": 720,
Expand Down
2 changes: 1 addition & 1 deletion docs/src/assets/custom-config.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/embedded-font-fira.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/embedded-font-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/embedded-font.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/failure-bash-pty.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/failure-pwsh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/failure-sh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/fira-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/fira.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/no-inputs-numbers-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/no-inputs-numbers.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-continuous-outputs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-continuous-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-continuous.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-each-output.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-long-cont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-long-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/numbers-long.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/rainbow-pure.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/rainbow-small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/rainbow-wide.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/src/assets/rainbow.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h2 class="accordion-header" id="user-input-1">
</div> </div>
</main>
<footer class="my-4 text-center">
<p><em class="small text-muted">Created with <a href="https://github.com/slowli/term-transcript">term-transcript v0.5.0-beta.1</a></em></p>
<p><em class="small text-muted">Created with <a href="https://github.com/slowli/term-transcript">term-transcript v0.5.0</a></em></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/library.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Add this to your `Crate.toml`:

```toml
[dependencies]
term-transcript = "0.5.0-beta.1"
term-transcript = "0.5.0"
```

See [the library docs](crates/term_transcript) for detailed description of its API.
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/rainbow/repl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/animated.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/rainbow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading