diff --git a/CHANGELOG.md b/CHANGELOG.md index d6b8bf2..e8eb7ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0). ## Unreleased +Nothing. + +## [7.0.0](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v6.1.0...v7.0.0) / 2023-07-15 + +Major release with a single breaking change: Python 3.7 is not supported +anymore. Beyond that, three improvements based on various pull requests. + ### Added - Instrumentator now works without FastAPI. This is possible because every diff --git a/pyproject.toml b/pyproject.toml index 91a51c2..a04e4ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "prometheus-fastapi-instrumentator" -version = "6.1.0" +version = "7.0.0" description = "Instrument your FastAPI with Prometheus metrics." authors = ["Tim Schwenke "] license = "ISC" diff --git a/src/prometheus_fastapi_instrumentator/__init__.py b/src/prometheus_fastapi_instrumentator/__init__.py index c03a823..88fdbc8 100644 --- a/src/prometheus_fastapi_instrumentator/__init__.py +++ b/src/prometheus_fastapi_instrumentator/__init__.py @@ -1,5 +1,5 @@ from .instrumentation import PrometheusFastApiInstrumentator -__version__ = "6.1.0" +__version__ = "7.0.0" Instrumentator = PrometheusFastApiInstrumentator