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
11 changes: 0 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- *(textwrap)* add styled text wrapping experiment ([#12](https://github.com/ratatui/ratatui-labs/pull/12))

## [0.0.1-alpha.0](https://github.com/ratatui/ratatui-labs/compare/ratatui-textwrap-v0.0.0...ratatui-textwrap-v0.0.1-alpha.0) - 2026-07-17

### Added

- *(textwrap)* add styled text wrapping experiment ([#12](https://github.com/ratatui/ratatui-labs/pull/12))

## [0.1.1](https://github.com/ratatui/ratatui-labs/compare/ratatui-labs-v0.1.0...ratatui-labs-v0.1.1) - 2026-06-30

### Other
Expand All @@ -45,8 +39,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add production automation ([#1](https://github.com/ratatui/ratatui-labs/pull/1))
- Document palette validation decisions
- Extract command palette crates
# Changelog

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

Release entries are managed by release-plz.
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.

2 changes: 1 addition & 1 deletion crates/ratatui-labs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ratatui-action = { path = "../ratatui-action", version = "0.1.0" }
ratatui-command-palette = { path = "../ratatui-command-palette", version = "0.1.0" }
ratatui-derive = { path = "../ratatui-derive", version = "0.1.0-beta.0" }
ratatui-layout = { path = "../ratatui-layout", version = "0.0.1-alpha.0" }
ratatui-textwrap = { path = "../ratatui-textwrap", version = "0.0.1-alpha.1" }
ratatui-textwrap = { path = "../ratatui-textwrap", version = "0.0.1" }

[lints]
workspace = true
30 changes: 30 additions & 0 deletions crates/ratatui-textwrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog

All notable changes to `ratatui-textwrap` will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- markdownlint-disable MD024 -->

## [Unreleased]

## [0.0.1](https://github.com/ratatui/ratatui-labs/compare/ratatui-textwrap-v0.0.1-alpha.1...ratatui-textwrap-v0.0.1) - 2026-07-20

### Other

- Promote `ratatui-textwrap` to the first stable release.

## [0.0.1-alpha.1](https://github.com/ratatui/ratatui-labs/compare/ratatui-textwrap-v0.0.1-alpha.0...ratatui-textwrap-v0.0.1-alpha.1) - 2026-07-17

### Other

- *(textwrap)* Record future design directions
([#14](https://github.com/ratatui/ratatui-labs/pull/14)).

## [0.0.1-alpha.0](https://github.com/ratatui/ratatui-labs/compare/ratatui-textwrap-v0.0.0...ratatui-textwrap-v0.0.1-alpha.0) - 2026-07-17

### Added

- *(textwrap)* Add styled text wrapping experiment
([#12](https://github.com/ratatui/ratatui-labs/pull/12)).
4 changes: 2 additions & 2 deletions crates/ratatui-textwrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ratatui-textwrap"
version = "0.0.1-alpha.1"
version = "0.0.1"
publish = true
edition.workspace = true
license.workspace = true
Expand All @@ -11,7 +11,7 @@ keywords.workspace = true
categories.workspace = true
description = "Experimental owned wrapping for styled Ratatui text."
readme = "README.md"
include = ["Cargo.toml", "README.md", "docs/**/*.md", "src/**/*.rs"]
include = ["Cargo.toml", "CHANGELOG.md", "README.md", "docs/**/*.md", "src/**/*.rs"]

[dependencies]
# Keep this aligned with the umbrella crate so the workspace's direct-minimal dependency check can
Expand Down
4 changes: 4 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ semver_check = true
git_release_body = """
{{ changelog | replace(from=" by @", to=" by ") }}
"""

[[package]]
name = "ratatui-textwrap"
changelog_path = "crates/ratatui-textwrap/CHANGELOG.md"
Loading