diff --git a/CHANGELOG.md b/CHANGELOG.md index d5a546a..05aa0e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0). ## Unreleased +Nothing. + +## [6.0.0](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v5.11.2...v6.0.0) / 2023-03-20 + +Small release with a small breaking change leading to an increase of the major +version according to semantic versioning. + +Breaking change only affects users that have custom instrumentations that access +`info.response.body`, a feature introduced with [5.10.0](#5100--2023-02-26) few +weeks ago. See below for more information. + ### Added - **BREAKING:** Disabled passing response body to instrumentation functions. diff --git a/pyproject.toml b/pyproject.toml index 7c2f607..c3d1568 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "prometheus-fastapi-instrumentator" -version = "5.11.2" +version = "6.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 7fc4572..75e31f5 100644 --- a/src/prometheus_fastapi_instrumentator/__init__.py +++ b/src/prometheus_fastapi_instrumentator/__init__.py @@ -1,5 +1,5 @@ from .instrumentation import PrometheusFastApiInstrumentator -__version__ = "5.11.2" +__version__ = "6.0.0" Instrumentator = PrometheusFastApiInstrumentator