From dcbe8903ed6528bd7e217efcfb3af97d633ce708 Mon Sep 17 00:00:00 2001 From: themilchenko Date: Fri, 27 Dec 2024 16:04:58 +0300 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 10 ++++++++-- README.md | 2 +- roles/metrics-export.lua | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd2a358..48056eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,14 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Fixed + +### Changed + +## 0.3.0 - 2024-12-27 + +### Added + - Support TLS for `listen` parameter (#26). ### Fixed - Update Tarantool dependency to `>=3.0.2` (#25). -### Changed - ## 0.2.0 - 2024-10-02 The release introduces the integration with `httpd` role and latency observation for http diff --git a/README.md b/README.md index 5feb14c..52d1c49 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.2.0-1', + 'metrics-export-role == 0.3.0-1', ... } ``` diff --git a/roles/metrics-export.lua b/roles/metrics-export.lua index f2beca4..42c86b1 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.2.0" +M._VERSION = "0.3.0" local function is_array(tbl) assert(type(tbl) == "table", "a table expected")