From e66d294bd905b45290eea19fd68a74f673b927c3 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 28 Aug 2022 22:35:57 +0200 Subject: [PATCH] Bump version to 0.4.0 --- CHANGELOG.md | 6 ++++++ curtsies/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af50d9b..8c0968c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.4.0] - 2022-08-28 +- Clean up both `wakeup_fds` +- Drop support for Python 3.6 +- Switch to blessed +- Typing: add more annotations + ## [0.3.10] - 2021-10-08 - Typing: more specify return types for event triggers - Typing: don't allow Event instances in PasteEvent contents diff --git a/curtsies/__init__.py b/curtsies/__init__.py index 688b053..fdc9e75 100644 --- a/curtsies/__init__.py +++ b/curtsies/__init__.py @@ -1,5 +1,5 @@ """Terminal-formatted strings""" -__version__ = "0.3.10" +__version__ = "0.4.0" from .window import FullscreenWindow, CursorAwareWindow from .input import Input