From 50e03d566b673c0449846fd49ffcb5789f804348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jochen=20Wersd=C3=B6rfer?= Date: Sat, 21 Oct 2023 16:04:22 +0200 Subject: [PATCH] bump version number to 0.0.12 --- CHANGELOG.md | 12 ++++++++++++ kptncook/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458ff9b..df84d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +0.0.12 - 2023-10-21 +=================== +Ignore pydantic DeprecationWarnings. + +### Fixes +- Fixed broken `KptnCookClient.to_url` method + - #23 use urljoin instead of f-string @ephes + +0.0.11 - 2023-10-05 +=================== +Pydantic >= 2 compatibility and Python 3.12 support. + 0.0.10 - 2023-02-26 =================== Export recipes to [Paprika Recipe Manager](https://www.paprikaapp.com/) diff --git a/kptncook/__init__.py b/kptncook/__init__.py index 9ab3357..81d7dd9 100644 --- a/kptncook/__init__.py +++ b/kptncook/__init__.py @@ -32,7 +32,7 @@ "export_recipes_to_paprika", ] -__version__ = "0.0.11" +__version__ = "0.0.12" cli = typer.Typer()