From 40a9c1e105bf8325918b7e98edcabe8fd8986f84 Mon Sep 17 00:00:00 2001 From: DatGuy Date: Tue, 13 Feb 2024 01:06:50 +0200 Subject: [PATCH] release: release v1.1.0 --- CHANGELOG.rst | 4 ++-- docs/migration.rst | 4 ++-- src/windows_toasts/_version.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 83bc3ac..871cd25 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -Unversioned -=========== +1.1.0 (2024-02-13) +================== - Importing the module now throws an exception if the Windows version is unsupported (#122) - Replaced toasts_winrt with winrt-Namespace packages (#113) - Dropped Python 3.8 support (#113) diff --git a/docs/migration.rst b/docs/migration.rst index 7853e52..e417ab0 100644 --- a/docs/migration.rst +++ b/docs/migration.rst @@ -4,9 +4,9 @@ Migrating from v0.x to v1.0.0 Version 1.0.0 comes with a large backend refactoring and simplification of existing features, along with a few new features. This guide will detail the changes and how to adapt to them. -Replaced winsdk requirement with toasts-winrt +Replaced winsdk requirement with modularisation --------------------------------------------- -Instead of the 12 MB `winsdk `_ release, Windows-Toasts now uses a streamlined 500 kB `toasts-winrt `_ package to lessen install times and storage requirements. +Instead of the 12 MB `winsdk `_ release, Windows-Toasts now uses a number of streamlined package to lessen install times and storage requirements. Toast class simplification -------------------------- diff --git a/src/windows_toasts/_version.py b/src/windows_toasts/_version.py index 6285c6f..53fb3dc 100644 --- a/src/windows_toasts/_version.py +++ b/src/windows_toasts/_version.py @@ -1,6 +1,6 @@ __title__ = "Windows-Toasts" __description__ = "Python library used to send toast notifications on Windows machines" __url__ = "https://github.com/DatGuy1/Windows-Toasts" -__version__ = "1.0.2" +__version__ = "1.1.0" __author__ = "DatGuy" __license__ = "Apache 2.0"