From fe550089a77f50c985fd82b8d4ff30a89a4586ba Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Thu, 8 Jun 2023 12:42:02 +0300 Subject: [PATCH] Release 1.6.3 Overview This release introduce versioning support abd basic fieldno path support for indexes. New features - Added versioning support (#105). Buxfixes - Add basic fieldno path support for indexes (#108). It is the compatibility layer for Tarantool spaces created not through ddl: users are not encouraged to create fieldno path indexes in schema, since we do not support them as sharding keys. --- CHANGELOG.md | 2 +- ddl/version.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbf9a3e..174ff98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.6.3] - 2023-06-08 ### Added diff --git a/ddl/version.lua b/ddl/version.lua index bf8b64a..dcb7553 100644 --- a/ddl/version.lua +++ b/ddl/version.lua @@ -1,4 +1,4 @@ -- Сontains the module version. -- Requires manual update in case of release commit. -return '1.6.2' +return '1.6.3'