From 8a3ad1ab93049d785631a232861820c34f54f387 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 20 Feb 2023 23:19:00 -0600 Subject: [PATCH] chore(main): release 0.4.0 (#393) --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/healthchecks_io/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..9af2d990 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.4.0](https://github.com/andrewthetechie/py-healthchecks.io/compare/v0.3.1...v0.4.0) (2023-02-21) + + +### Features + +* add python 3.11 support ([#392](https://github.com/andrewthetechie/py-healthchecks.io/issues/392)) ([a752c42](https://github.com/andrewthetechie/py-healthchecks.io/commit/a752c42a28762fed48c3af57c7543b8b3b606702)) diff --git a/pyproject.toml b/pyproject.toml index 0bd0101f..4b6c950e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "healthchecks_io" -version = "0.0.0" +version = "0.4.0" description = "A python client package for Healthchecks.io API" authors = ["Andrew Herrington "] license = "MIT" diff --git a/src/healthchecks_io/__init__.py b/src/healthchecks_io/__init__.py index dc97a365..170cf344 100644 --- a/src/healthchecks_io/__init__.py +++ b/src/healthchecks_io/__init__.py @@ -1,6 +1,6 @@ """Py Healthchecks.Io.""" # set by poetry-dynamic-versioning -__version__ = "0.0.0" # noqa: E402 +__version__ = "0.4.0" # noqa: E402 from .client import AsyncClient # noqa: F401, E402 from .client import Client # noqa: F401, E402