Skip to content

Commit

Permalink
chore: Prepare release v6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trallnag committed Mar 20, 2023
1 parent d4db652 commit 1143e9c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion src/prometheus_fastapi_instrumentator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .instrumentation import PrometheusFastApiInstrumentator

__version__ = "5.11.2"
__version__ = "6.0.0"

Instrumentator = PrometheusFastApiInstrumentator

0 comments on commit 1143e9c

Please sign in to comment.