Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
themilchenko committed Dec 27, 2024
1 parent 4f7b890 commit dcbe890
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion roles/metrics-export.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit dcbe890

Please sign in to comment.