Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiburt committed Aug 4, 2024
1 parent 733c64d commit 72220a1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.16.0] - 2024-08-05

### Added

- Added `#[tabled(crate = "")]` attribute.
- Added `#[tabled(format = "", format(""))]` attribute.
- Support for expressions in `#[tabled(display_with(""))]`
- Added tupple combinations of settings, just as `Settings` does.
- Added `PriorityRight` and `PriorityLeft` priorities.
- Created back `Layout`/`Reverse`/`MarginColor`/`PaddingColor`.
- Added custom template setting in `ExtendedTable` (by [@brianheineman](https://github.com/brianheineman))

# Changed

- Stabilized `unicode-width` dependency so we expect the outcome (but probably there shall be done adjustments for it further support).
- Work on format macros (by [@thomassimmer](https://github.com/thomassimmer)).
- Renamed `wrap::wrap_text` and `truncate::truncate_text`.
- Renamed `CellInfo` to `Text`.
- Changed interface of `Theme` and splitted into other structs.
- Changed `Width`/`Height::priority` interface so it's no longer generic.

# Fixed

- Fix issue with `Cow`` usage in derive.
- Fix `Builder::push_column` (by [@zxch3n](https://github.com/zxch3n)).
- Fix `README.md` (by [@akiomik](https://github.com/akiomik)).
- Fix `README.md` (by [@fbonin](https://github.com/fbonin)).
- Fix spellings (by [@Alexdelia](https://github.com/Alexdelia)).
- Fix spellings (by [@xeruf](https://github.com/xeruf)).
- Fix spellings (by [@strange-dv](https://github.com/strange-dv)).
- Fix spellings (by [@rcorre](https://github.com/rcorre)).
- Fix docs (by [@jvanbuel](https://github.com/jvanbuel)).
- Fix docs (by [@obi1kenobi](https://github.com/obi1kenobi)).
- Fix CI issues (by [@akiomik](https://github.com/akiomik)).

## [0.15.0] - 2023-12-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion tabled/examples/terminal_size2/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn main() {
let (width, height) = get_terminal_size();

let term_size_settings = Settings::default()
.with(Width::wrap(width).priority::<PriorityMax>())
.with(Width::wrap(width).priority(PriorityMax))
.with(Width::increase(width))
.with(Height::limit(height))
.with(Height::increase(height));
Expand Down

0 comments on commit 72220a1

Please sign in to comment.