chore(main): release 0.4.0 (#393)

This commit is contained in:
Andrew
2023-02-20 23:19:00 -06:00
committed by GitHub
parent a752c42a28
commit 8a3ad1ab93
3 changed files with 10 additions and 2 deletions

8
CHANGELOG.md Normal file
View File

@@ -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))

View File

@@ -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 <andrew.the.techie@gmail.com>"]
license = "MIT"

View File

@@ -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