From 7789c55ffe2dd7ae20e379c0cbc05b90c8f7e8e1 Mon Sep 17 00:00:00 2001 From: Jason DeLaat Date: Tue, 2 Mar 2021 07:19:40 -0500 Subject: [PATCH] chore: Update to version 0.2.0 --- CHANGES.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ setup.cfg | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..00a60d7 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,49 @@ + + +## [v0.2.0](https://github.com/jasondelaat/ticklish_ui/compare/v0.1.3...v0.2.0) (2021-03-01) + +### Chore + +* updates .gitignore + +### Docs + +* Adds PanedWindow example +* Adds an example of Notebook +* Adds two examples using Scrollable widgets +* Adds tags_example.py +* Adds an example of the Text widget +* Adds an example for scale widgets +* Adds an example demonstrating virtual event user data. + +### Feat + +* Adds PanedWindow widget +* Adds Notebook widget +* Adds Scrollbar widget and Scrollable container +* Adds tags option to all widgets +* Adds wrapper class for the Text widget +* Adds Scale widget +* Adds progressbar widget +* Allows user data with virtual events in event streams. + +### Fix + +* Makes sure tags are applied to containers and not just contents + + + +## [v0.1.3](https://github.com/jasondelaat/ticklish_ui/compare/v0.1.2...v0.1.3) (2021-02-21) + + + +## [v0.1.2](https://github.com/jasondelaat/ticklish_ui/compare/v0.1.1...v0.1.2) (2021-02-21) + + + +## [v0.1.1](https://github.com/jasondelaat/ticklish_ui/compare/v0.1.0...v0.1.1) (2021-02-13) + + + +## v0.1.0 (2021-02-13) + diff --git a/setup.cfg b/setup.cfg index e5d1438..81aba5e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ticklish_ui -version = 0.1.3 +version = 0.2.0 author = Jason DeLaat author_email = jason.develops@gmail.com description = A thin-ish wrapper around tkinter for specifying GUIs declaratively.