From 68b230ccb2d45737367fd351ef25e4d351a5c799 Mon Sep 17 00:00:00 2001 From: benoit Date: Mon, 28 Aug 2023 12:09:16 +0200 Subject: [PATCH] Release 1.0.0 --- CHANGELOG.md | 11 +++++++++++ check_patroni/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6fdb1..6ad4036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ ### Added +### Fixed + +### Misc + +## check_patroni 1.0.0 - 2023-08-28 + +Check patroni is now tagged as Production/Stable. + +### Added + * Add `sync_standby` as a valid replica type for `cluster_has_replica`. (contributed by @mattpoel) * Add info and options (`--sync-warning` and `--sync-critical`) about sync replica to `cluster_has_replica`. * Add a new service `cluster_has_scheduled_action` to warn of any scheduled switchover or restart. @@ -21,6 +31,7 @@ * Create CHANGELOG.md * Add tests for the output of the scripts in addition to the return code +* Documentation in CONTRIBUTING.md ## check_patroni 0.2.0 - 2023-03-20 diff --git a/check_patroni/__init__.py b/check_patroni/__init__.py index 91364a6..bd406c9 100644 --- a/check_patroni/__init__.py +++ b/check_patroni/__init__.py @@ -1,5 +1,5 @@ import logging -__version__ = "0.2.0" +__version__ = "1.0.0" _log: logging.Logger = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index 642e44d..ad4c0f2 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( long_description=long_description, long_description_content_type="text/markdown", classifiers=[ - "Development Status :: 4 - Beta", # "Development Status :: 5 - Production/Stable", + "Development Status :: 5 - Production/Stable", "Environment :: Console", "License :: OSI Approved :: PostgreSQL License", "Programming Language :: Python :: 3",