Skip to content

Commit

Permalink
[feat] Bump version and update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
uttarayan21 committed Mar 21, 2023
1 parent 50f5be0 commit eec6f86
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
33 changes: 27 additions & 6 deletions CHANGELOG.md
Expand Up @@ -11,7 +11,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 10 commits contributed to the release over the course of 214 calendar days.
- 2 commits contributed to the release.
- 5 days passed between releases.
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- [fix] properly reset styles ([`50f5be0`](https://github.com/uttarayan21/ansi-to-tui/commit/50f5be0ec5e9b49efebf6cb34a967b550843c61b))
- [fix] Properly set background colors ([`f827e25`](https://github.com/uttarayan21/ansi-to-tui/commit/f827e25d7998d48f7bbf004440d7cb20b54b5d99))
</details>

## 2.0.1 (2023-03-16)

### Commit Statistics

<csr-read-only-do-not-edit/>

- 11 commits contributed to the release over the course of 214 calendar days.
- 238 days passed between releases.
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
Expand All @@ -23,9 +45,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Adjusting changelogs prior to release of ansi-to-tui v2.0.1 ([`87fe3a0`](https://github.com/uttarayan21/ansi-to-tui/commit/87fe3a0b8d68fccc582eeeccf9d567c1f94b665d))
- [feat] CHANGELOGS Using cargo changelog ([`3bc3d4b`](https://github.com/uttarayan21/ansi-to-tui/commit/3bc3d4b7811184d0779b73336e9e5f948844b71a))
- [fix] Bump version prep for release ([`2f18e2f`](https://github.com/uttarayan21/ansi-to-tui/commit/2f18e2faf4ce0937110592e306be1a3bcb0c1733))
- [fix] Write changelog ([`4324447`](https://github.com/uttarayan21/ansi-to-tui/commit/4324447763d9760ee1364d78e3392fcefc078619))
- Adjusting changelogs prior to release of ansi-to-tui v2.0.1 ([`874a3a8`](https://github.com/uttarayan21/ansi-to-tui/commit/874a3a8abf968b4112c454d231fa7dfb9c157a42))
- [feat] CHANGELOGS Using cargo changelog ([`604e1d1`](https://github.com/uttarayan21/ansi-to-tui/commit/604e1d1ca493706c090c4535fb0be019757ed250))
- [fix] Bump version prep for release ([`8e07c79`](https://github.com/uttarayan21/ansi-to-tui/commit/8e07c79c42b1b831570cd25027ec48bc83b30fc2))
- Add fg/bg colors for 90-110 ANSI code range ([`1bd18a9`](https://github.com/uttarayan21/ansi-to-tui/commit/1bd18a9ab1424d2a1bd785515384aab4d58f07cf))
- [fix] Don't include the empty spans but keep changing the style ([`acdb671`](https://github.com/uttarayan21/ansi-to-tui/commit/acdb671763c655727f7b5fee9d867ac977d97070))
- [fix] Don't exclude empty spans ([`0d1e9bc`](https://github.com/uttarayan21/ansi-to-tui/commit/0d1e9bc1786886aec7e1f4ddf058b278793b928a))
Expand All @@ -35,8 +58,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [fix] Don't hang on screen modes ([`189d9c5`](https://github.com/uttarayan21/ansi-to-tui/commit/189d9c5021e8b69c046be4a4c2cd78095154dc45))
</details>

## 2.0.1 (2023-03-16)

## v1.0.1 (2022-07-20)

### Commit Statistics
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ansi-to-tui"
version = "2.0.1"
version = "2.0.2"
authors = ["Uttarayan Mondal <email@uttarayan.me>"]
edition = "2018"
description = "A library to convert ansi color coded text into tui::text::Text type from tui-rs library"
Expand Down
3 changes: 1 addition & 2 deletions README.md
@@ -1,6 +1,6 @@
# ansi-to-tui

[![drone build](https://img.shields.io/drone/build/uttarayan/ansi-to-tui?server=https%3A%2F%2Fdrone.uttarayan.me)][mirror] [![github build](https://github.com/uttarayan21/ansi-to-tui/actions/workflows/build.yaml/badge.svg)][ansi-to-tui] [![downloads](https://img.shields.io/crates/d/ansi-to-tui)](https://crates.io/crates/ansi-to-tui)
![drone build](https://img.shields.io/drone/build/uttarayan21/ansi-to-tui?server=https%3A%2F%2Fdrone.uttarayan.me)] [![github build](https://github.com/uttarayan21/ansi-to-tui/actions/workflows/build.yaml/badge.svg)][ansi-to-tui] [![downloads](https://img.shields.io/crates/d/ansi-to-tui)](https://crates.io/crates/ansi-to-tui)

A nom parser to parse text with ANSI color codes and turn them into [`tui::text::Text`][Text].

Expand All @@ -20,4 +20,3 @@ let output = buffer.into_text();

[Text]: https://docs.rs/tui/0.16.0/tui/text/struct.Text.html
[ansi-to-tui]: https://github.com/uttarayan21/ansi-to-tui
[mirror]: https://git.uttarayan.me/uttarayan/ansi-to-tui

0 comments on commit eec6f86

Please sign in to comment.