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 872c8ac commit 0aab5c1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Check module version
uses: tarantool/actions/check-module-version@master
with:
module-name: 'metrics-export-role'
module-name: 'roles.metrics-export'

publish-rockspec-scm-1:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
Expand Down
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 0aab5c1

Please sign in to comment.