diff --git a/CHANGELOG.md b/CHANGELOG.md index aff86ef..ab1de87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- Introduce latency observation for http endpoint (#17). -- Support `roles.httpd` integration (#15). ### Fixed ### Changed +## 0.2.0 - 2024-10-02 + +The release introduces the integration with `httpd` role and latency observation for http +endpoint. Now it is possible to [reuse server's address from `httpd` role config +for `metrics-export-role` configuration](README.md#integration-with-httpd-role). + +### Added + +- Introduce latency observation for http endpoint (#17). +- Support `roles.httpd` integration (#15). + ## 0.1.0 - 2024-06-11 The release introduces the `metrics-export-role` module: export metrics diff --git a/README.md b/README.md index b3813b1..410ffab 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ from Tarantool 3. For now only export via HTTP is supported. ```Lua dependencies = { ... - 'metrics-export-role == 0.1.0-1', + 'metrics-export-role == 0.2.0-1', ... } ``` diff --git a/roles/metrics-export.lua b/roles/metrics-export.lua index 03a2bda..96921e2 100644 --- a/roles/metrics-export.lua +++ b/roles/metrics-export.lua @@ -6,7 +6,7 @@ local M = {} -- Сontains the module version. -- Requires manual update in case of release commit. -M._VERSION = "0.1.0" +M._VERSION = "0.2.0" local function is_array(tbl) assert(type(tbl) == "table", "a table expected")