From 55ab0b72330d64f69879305b3cb3631cea507064 Mon Sep 17 00:00:00 2001 From: Tim Schwenke Date: Sat, 15 Jul 2023 11:38:45 +0200 Subject: [PATCH] chore: Prepare release v6.1.0 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/prometheus_fastapi_instrumentator/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3d8da..dc54f94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0). ## Unreleased +Nothing. + +## [6.1.0](https://github.com/trallnag/prometheus-fastapi-instrumentator/compare/v6.0.0...v6.1.0) / 2023-07-15 + ### Added - Added label `method` metric `http_request_duration_seconds` from default diff --git a/pyproject.toml b/pyproject.toml index 13d6056..f3152c4 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.0.0" +version = "6.1.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 75e31f5..c03a823 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.0.0" +__version__ = "6.1.0" Instrumentator = PrometheusFastApiInstrumentator