Skip to content

Commit fc13434

Browse files
committed
Release 0.3.0
1 parent 4f7b890 commit fc13434

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
### Fixed
13+
14+
### Changed
15+
16+
## 0.3.0 - 2024-12-27
17+
18+
This release adds TLS support with `listen` configuration parameter.
19+
20+
### Added
21+
1222
- Support TLS for `listen` parameter (#26).
1323

1424
### Fixed
1525

1626
- Update Tarantool dependency to `>=3.0.2` (#25).
1727

18-
### Changed
19-
2028
## 0.2.0 - 2024-10-02
2129

2230
The release introduces the integration with `httpd` role and latency observation for http

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ from Tarantool 3. For now only export via HTTP is supported.
1414
```Lua
1515
dependencies = {
1616
...
17-
'metrics-export-role == 0.2.0-1',
17+
'metrics-export-role == 0.3.0-1',
1818
...
1919
}
2020
```

roles/metrics-export.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local M = {}
66

77
-- Сontains the module version.
88
-- Requires manual update in case of release commit.
9-
M._VERSION = "0.2.0"
9+
M._VERSION = "0.3.0"
1010

1111
local function is_array(tbl)
1212
assert(type(tbl) == "table", "a table expected")

0 commit comments

Comments
 (0)