From ab2433fec9cc67070d15dbfb66c025db261a7452 Mon Sep 17 00:00:00 2001 From: jorrick Date: Mon, 1 Aug 2022 22:58:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=200.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/release-notes.md | 3 +++ src/mac_notifications/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 7b23775..2615256 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest changes +## 0.1.5 - 1st August 2022 +- 📝 Python example was missing __name__ filter. + ## 0.1.4 - 1st August 2022 - 🐛 Multiple notifications in the same thread gave exceptions. Now you can send as many notifications as you want. diff --git a/src/mac_notifications/__init__.py b/src/mac_notifications/__init__.py index 30c2371..30ac203 100644 --- a/src/mac_notifications/__init__.py +++ b/src/mac_notifications/__init__.py @@ -4,4 +4,4 @@ from __future__ import annotations -__version__ = "0.1.4" +__version__ = "0.1.5"