diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8f7ca..6431f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +9,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added -- Method truncate() to clean tubes (#78). -- `release_limit` configuration option: a taken task is removed from the queue - if the task has been released (by `release` or `ttr`) `release_limit` times (#8). - -- `release_limit_policy` configuration option: control the behavior when a task - reached the `release_limit` (#9). - ### Changed ### Fixed +## 1.1.0 - 2026-02-27 + +The release synchronizes sharded-queue with sharded-queue-ee. + +### Added + +- Method truncate() to clean tubes. +- `release_limit` configuration option: a taken task is removed from the queue + if the task has been released (by `release` or `ttr`) `release_limit` times. +- `release_limit_policy` configuration option: control the behavior when a task + reached the `release_limit`. + ## 1.0.0 - 2024-04-17 The release introduces roles for Tarantool 3 and improves the module metrics. diff --git a/debian/changelog b/debian/changelog index 009034d..d08e9c6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sharded-queue (1.1.0-1) unstable; urgency=medium + + The release synchronizes sharded-queue with sharded-queue-ee. + * Method truncate() to clean tubes. + * `release_limit` configuration option: a taken task is removed from the queue + * `release_limit_policy` configuration option: control the behavior when a task + + -- Oleg Jukovec Fri, 27 Feb 2026 01:06:06 +0300 + sharded-queue (1.0.0-1) unstable; urgency=medium * Initial release diff --git a/rpm/sharded-queue.spec b/rpm/sharded-queue.spec index 823dfd1..7cdf1cc 100644 --- a/rpm/sharded-queue.spec +++ b/rpm/sharded-queue.spec @@ -1,5 +1,5 @@ Name: sharded-queue -Version: 1.0.0-1 +Version: 1.1.0-1 Release: 1%{?dist} Summary: Tarantool Sharded Queue Application Group: Applications/Databases @@ -32,5 +32,10 @@ install -m 0644 roles/* %{buildroot}%{_datarootdir}/tarantool/roles/ %changelog +* Fri Feb 27 2026 Oleg Jukovec - 1.1.0-1 +- Method truncate() to clean tubes. +- `release_limit` configuration option: a taken task is removed from the queue +- `release_limit_policy` configuration option: control the behavior when a task + * Tue Feb 17 2026 Oleg Jukovec 1.0.0-1 - Initial version of the RPM spec diff --git a/sharded_queue/version.lua b/sharded_queue/version.lua index 4b4a9f4..9e04383 100644 --- a/sharded_queue/version.lua +++ b/sharded_queue/version.lua @@ -1,4 +1,4 @@ -- Сontains the module version. -- Requires manual update in case of release commit. -return '1.0.0' +return '1.1.0'