diff --git a/CHANGES.rst b/CHANGES.rst index f4344a6..6987088 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,17 @@ -1.7.0 - 2021-03-02 +2.0.0 - 2023-10-28 +================== + +- Add HTTPS (SSL) support. +- Rework ``MetricConfig``, labels are now an attribute. +- Rework project setup, make packages private. +- Add typing to tests. + + +1.7.0 - 2023-03-02 ================== - Require Python 3.10 or later. -- Reqork project setup, move tests. +- Rework project setup, move tests. - Drop ``setup.{py,cfg}``, extract ``tox.ini`` config. diff --git a/prometheus_aioexporter/__init__.py b/prometheus_aioexporter/__init__.py index fb4d870..8c19340 100644 --- a/prometheus_aioexporter/__init__.py +++ b/prometheus_aioexporter/__init__.py @@ -15,4 +15,4 @@ "__version__", ] -__version__ = "2.0.dev1" +__version__ = "2.0.0"