From d4b7849191eb5ff0241058047aeec3b88b3b914c Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 5 May 2024 14:25:37 -0500 Subject: [PATCH] chore(main): release 0.4.1 (#490) --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- src/healthchecks_io/__init__.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9af2d99..92bb119 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.4.1](https://github.com/andrewthetechie/py-healthchecks.io/compare/v0.4.0...v0.4.1) (2024-05-05) + + +### Bug Fixes + +* update poetry and virtualenv ([#489](https://github.com/andrewthetechie/py-healthchecks.io/issues/489)) ([1376595](https://github.com/andrewthetechie/py-healthchecks.io/commit/1376595877577848e0672d88403dc5740e7c1664)) + + +### Dependencies + +* bump pytest-asyncio from 0.21.2 to 0.23.6 ([#657](https://github.com/andrewthetechie/py-healthchecks.io/issues/657)) ([f785186](https://github.com/andrewthetechie/py-healthchecks.io/commit/f7851865821ed0f6df4d4977a4e3a5bc26bbf190)) +* bump ruff from 0.0.275 to 0.4.3 ([#655](https://github.com/andrewthetechie/py-healthchecks.io/issues/655)) ([6de87bb](https://github.com/andrewthetechie/py-healthchecks.io/commit/6de87bb43d2c236f1be762d439998baea5d0c417)) +* bump types-croniter from 1.4.0.1 to 2.0.0.20240423 ([#654](https://github.com/andrewthetechie/py-healthchecks.io/issues/654)) ([50f8bba](https://github.com/andrewthetechie/py-healthchecks.io/commit/50f8bbabb2df6aed0931ca5979792e694121650c)) + + +### Documentation + +* fixes get_check args ([#597](https://github.com/andrewthetechie/py-healthchecks.io/issues/597)) ([cb862fa](https://github.com/andrewthetechie/py-healthchecks.io/commit/cb862fa2c576b62dee2661a2939f69548726bc11)) + ## [0.4.0](https://github.com/andrewthetechie/py-healthchecks.io/compare/v0.3.1...v0.4.0) (2023-02-21) diff --git a/pyproject.toml b/pyproject.toml index cfcf857..6be2d9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "healthchecks_io" -version = "0.4.0" +version = "0.4.1" 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 de95461..4752d19 100644 --- a/src/healthchecks_io/__init__.py +++ b/src/healthchecks_io/__init__.py @@ -1,7 +1,7 @@ """Py Healthchecks.Io.""" # set by poetry-dynamic-versioning -__version__ = "0.4.0" # noqa: E402 +__version__ = "0.4.1" # noqa: E402 from .client import AsyncClient # noqa: F401, E402 from .client import Client # noqa: F401, E402