Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
Overview

    The release introduces the `metrics-export-role` module: export metrics
    from `Tarantool` 3.
    The release contains role for `Tarantool` 3.

New features

    `Tarantool` 3 role with documentation.
  • Loading branch information
better0fdead committed Jul 11, 2024
1 parent 511162b commit acc9c2d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- The role implementation (#6).
- A documentation for the role to README.md (#5).

### Fixed

### Changed

## 0.1.0 - 2024-06-11

The release introduces the `metrics-export-role` module: export metrics
from `Tarantool` 3. The release contains role for `Tarantool` 3 with
documentation.

### Added

- The role implementation (#6).
- A documentation for the role to README.md (#5).
4 changes: 4 additions & 0 deletions roles/metrics-export.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ local http_server = require('http.server')

local M = {}

-- Сontains the module version.
-- Requires manual update in case of release commit.
M._VERSION = "0.1.0"

local function is_array(tbl)
assert(type(tbl) == "table", "a table expected")
for k, _ in pairs(tbl) do
Expand Down

0 comments on commit acc9c2d

Please sign in to comment.