From 78393be66bcf3bdf8aa554411672c4207f7082eb Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 7 May 2024 16:24:54 -0500 Subject: [PATCH] chore(main): release 0.4.2 (#666) --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- src/healthchecks_io/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92bb119c..a194e252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.4.2](https://github.com/andrewthetechie/py-healthchecks.io/compare/v0.4.1...v0.4.2) (2024-05-07) + + +### Dependencies + +* bump croniter from 1.4.1 to 2.0.5 ([#660](https://github.com/andrewthetechie/py-healthchecks.io/issues/660)) ([f945389](https://github.com/andrewthetechie/py-healthchecks.io/commit/f94538951c0aed4b0528974d6cb29c4cfd859845)) +* bump pytest-cov from 4.1.0 to 5.0.0 ([#663](https://github.com/andrewthetechie/py-healthchecks.io/issues/663)) ([802520d](https://github.com/andrewthetechie/py-healthchecks.io/commit/802520d4548d70e5597321e02b8d11af322431bd)) +* bump safety from 2.3.5 to 3.2.0 ([#661](https://github.com/andrewthetechie/py-healthchecks.io/issues/661)) ([c56e048](https://github.com/andrewthetechie/py-healthchecks.io/commit/c56e048635d32eb9cf5c4f82a9929e9065da5735)) +* bump sphinx from 5.3.0 to 7.1.2 ([#662](https://github.com/andrewthetechie/py-healthchecks.io/issues/662)) ([97723e9](https://github.com/andrewthetechie/py-healthchecks.io/commit/97723e91b631e3c4266a090e169eb19ffe1de153)) + + +### Documentation + +* bump furo from 2024.4.27 to 2024.5.6 in /docs ([#665](https://github.com/andrewthetechie/py-healthchecks.io/issues/665)) ([b7438af](https://github.com/andrewthetechie/py-healthchecks.io/commit/b7438af1275ce8fceb5d996aabd28cce5ca1193c)) + ## [0.4.1](https://github.com/andrewthetechie/py-healthchecks.io/compare/v0.4.0...v0.4.1) (2024-05-05) diff --git a/pyproject.toml b/pyproject.toml index 440e8164..c094c552 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "healthchecks_io" -version = "0.4.1" +version = "0.4.2" 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 4752d19a..2d132a8a 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.1" # noqa: E402 +__version__ = "0.4.2" # noqa: E402 from .client import AsyncClient # noqa: F401, E402 from .client import Client # noqa: F401, E402