From 29d492346e7e3be1c5cf21aedbc2c804873be693 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 13:16:44 -0600 Subject: [PATCH] Bumps version to 0.10.0 (#135) Co-authored-by: tconbeer --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc33a51..89248d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.10.0] - 2024-10-31 + - Adds an optional parameter to DataTable to disable rendering of string data as Rich Markup. - Fixes a bug where None could be casted to a string and displayed as "None" ([tconbeer/harlequin#658](https://github.com/tconbeer/harlequin/issues/658)) @@ -143,7 +145,8 @@ All notable changes to this project will be documented in this file. - Initial release. Adds DataTable and ArrowBackend, which is 1000x faster for datasets of 500k records or more. -[unreleased]: https://github.com/tconbeer/textual-fastdatatable/compare/0.9.0...HEAD +[unreleased]: https://github.com/tconbeer/textual-fastdatatable/compare/0.10.0...HEAD +[0.10.0]: https://github.com/tconbeer/textual-fastdatatable/compare/0.9.0...0.10.0 [0.9.0]: https://github.com/tconbeer/textual-fastdatatable/compare/0.8.0...0.9.0 [0.8.0]: https://github.com/tconbeer/textual-fastdatatable/compare/0.7.1...0.8.0 [0.7.1]: https://github.com/tconbeer/textual-fastdatatable/compare/0.7.0...0.7.1 diff --git a/pyproject.toml b/pyproject.toml index 5b7c731..d8eebc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual-fastdatatable" -version = "0.9.0" +version = "0.10.0" description = "A performance-focused reimplementation of Textual's DataTable widget, with a pluggable data storage backend." authors = ["Ted Conbeer "] license = "MIT"