From 725500b976629a546014311ffcfb65011b172344 Mon Sep 17 00:00:00 2001 From: tconbeer Date: Mon, 9 Oct 2023 18:40:41 +0000 Subject: [PATCH] Bumps version to 0.1.3 --- CHANGELOG.md | 6 +++++- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c24cc0..f2215b5 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.1.3] - 2023-10-09 + - Fixes a crash when creating a column from a null or complex type. ## [0.1.2] - 2023-10-02 @@ -16,7 +18,9 @@ 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.1.2...HEAD +[Unreleased]: https://github.com/tconbeer/textual-fastdatatable/compare/0.1.3...HEAD + +[0.1.3]: https://github.com/tconbeer/textual-fastdatatable/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/tconbeer/textual-fastdatatable/compare/0.1.1...0.1.2 diff --git a/pyproject.toml b/pyproject.toml index cb8880d..05657da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual-fastdatatable" -version = "0.1.2" +version = "0.1.3" description = "A performance-focused reimplementation of Textual's DataTable widget, with a pluggable data storage backend." authors = ["Ted Conbeer "] license = "MIT"