From a0f7209e54cfcd9632a38e753e9b319f1653dc9b Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Sat, 17 Feb 2024 17:52:05 +0100 Subject: [PATCH] Prepare v1.0.0 release --- CHANGELOG.rst | 6 +++++- dmarc_metrics_exporter/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3e70040..97c647d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_, and this project adheres to `Semantic Versioning `_. -[1.0.0] - unreleased +[1.0.0] - 2024-02-17 -------------------- Added @@ -14,6 +14,10 @@ Added * Support for structured JSON logging. (`#35 `_) +* Docker images will be published for ``linux/amd64`` and ``linux/arm6`` + platforms. + (`#42 `_) +* Latest stable release will be tagged with ``latest`` tag on Docker Hub. Changed ^^^^^^^ diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py index bcf7f89..5becc17 100644 --- a/dmarc_metrics_exporter/__init__.py +++ b/dmarc_metrics_exporter/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0rc0" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index 8b00738..ce3f973 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ license = "MIT" name = "dmarc-metrics-exporter" readme = "README.rst" repository = "https://github.com/jgosmann/dmarc-metrics-exporter/" -version = "1.0.0rc0" # Update also in __init__.py! +version = "1.0.0" # Update also in __init__.py! [tool.poetry.scripts] dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"