From bed991219aae244408a1b0b0a4b618f075ff4e7f Mon Sep 17 00:00:00 2001 From: ttyS3 Date: Thu, 13 Feb 2025 16:10:22 +0000 Subject: [PATCH 1/2] chore: update .gitignore to track Cargo.lock --- examples/axum-metrics-demo/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/axum-metrics-demo/.gitignore b/examples/axum-metrics-demo/.gitignore index d81f12e..a312996 100644 --- a/examples/axum-metrics-demo/.gitignore +++ b/examples/axum-metrics-demo/.gitignore @@ -1,2 +1,3 @@ /target /.idea +!Cargo.lock From c6d6bef285460efcd5f73d2d991023e799a43509 Mon Sep 17 00:00:00 2001 From: ttys3 <41882455+ttys3@users.noreply.github.com> Date: Fri, 14 Feb 2025 00:13:30 +0800 Subject: [PATCH 2/2] chore: release v0.9.2 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8e5c9..7fc98dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ All notable changes to this project will be documented in this file. +## [0.9.2] - 2025-02-13 + +### 🚀 Features + +- Add default configuration for git-cliff (7fbaefa) +- Add changelog command to Makefile (7849b89) +- *(metrics)* Add custom bucket support for http metrics layer (89ed763) + +### 🚜 Refactor + +- *(metrics)* Remove requests_total counter and related code (cfad617) +- Derive default for HttpMetricsLayerBuilder (431dfbb) + +### 📚 Documentation + +- Update changelog template formatting (fb12e69) + +### ⚙️ Miscellaneous Tasks + +- Fix typo (21aee4e) +- Remove provider configuration from builder logic (5fa718c) +- Update dependencies in Cargo.toml (5a3a263) +- Update CHANGELOG.md (2daf719) +- Update CHANGELOG.md (816ccc7) + + ## [unreleased] ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 8482ed6..be587f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-otel-metrics" -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "MIT" description = "axum OpenTelemetry metrics middleware with prometheus exporter"