From 0e7af5a7d5472eedda1cbfcf0d696b162422bd60 Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Fri, 13 Sep 2024 12:45:49 +0300 Subject: [PATCH] Release 1.6.0 The release introduces a role for Tarantool 3. Fixed - Fixed request crash with empty body and unexpected header Content-Type (#189). Added - `roles.httpd` role to configure one or more HTTP servers (#196). - `httpd:delete(name)` method to delete named routes (#197). --- CHANGELOG.md | 17 ++++++++++++++--- http/version.lua | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8b94d9..9c28fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Added + +### Changed + +### Fixed + +## [1.6.0] - 2024-09-13 + +The release introduces a role for Tarantool 3. + ### Fixed -- Fixed request crash with empty body and unexpected header Content-Type (#189) +- Fixed request crash with empty body and unexpected header + Content-Type (#189). ### Added -- `roles.httpd` role to configure one or more HTTP servers (#196) -- `httpd:delete(name)` method to delete named routes (#197) +- `roles.httpd` role to configure one or more HTTP servers (#196). +- `httpd:delete(name)` method to delete named routes (#197). ## [1.5.0] - 2023-03-29 diff --git a/http/version.lua b/http/version.lua index 53a8043..8c84ab4 100644 --- a/http/version.lua +++ b/http/version.lua @@ -1,4 +1,4 @@ -- Сontains the module version. -- Requires manual update in case of release commit. -return '1.5.0' +return '1.6.0'