From a01c56faf4da01f7a4416244e8a75db7e621cddf Mon Sep 17 00:00:00 2001 From: Yannic Labonte Date: Sat, 24 Aug 2024 03:24:19 +0200 Subject: [PATCH] Prepare release --- README.md | 4 ++++ pyproject.toml | 2 +- src/setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1186da0..83d418c 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,10 @@ output), there is a really simple way to support me: ## Release Notes +### v1.4.5 (2024-08-24) +* Add appropriate `Content-Type` header for post requests. +* Fix some typing hints. + ### v1.4.4 (2024-08-20) * Yet another fix for the dmx post data payload conversion. diff --git a/pyproject.toml b/pyproject.toml index ea8c815..f1c0411 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "proconip" -version = "1.4.4" +version = "1.4.5" authors = [ { name="Yannic Labonte", email="yannic.labonte@gmail.com" }, ] diff --git a/src/setup.py b/src/setup.py index 99e31df..2345e98 100644 --- a/src/setup.py +++ b/src/setup.py @@ -8,4 +8,4 @@ "yarl>=1.9", ] -setup(name="proconip", version="1.4.4", packages=find_packages()) +setup(name="proconip", version="1.4.5", packages=find_packages())