From 907a8cf6ecca76d13dbae2287dd4856dc5820625 Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Sat, 27 Apr 2024 18:53:26 +0300 Subject: [PATCH 1/2] ddl: add license BSD license is already used in a lot of Tarantool open-source modules. --- CHANGELOG.md | 6 ++++++ LICENSE | 22 ++++++++++++++++++++++ ddl-scm-1.rockspec | 4 ++++ 3 files changed, 32 insertions(+) create mode 100644 LICENSE diff --git a/CHANGELOG.md b/CHANGELOG.md index 2297df1..c35fb46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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 + +### Added + +- BSD License (#125). + ## [1.7.0] - 2024-04-10 ### Added diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5209cf4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +Copyright 2019-2024 Tarantool. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/ddl-scm-1.rockspec b/ddl-scm-1.rockspec index e0fd336..f4f89a7 100644 --- a/ddl-scm-1.rockspec +++ b/ddl-scm-1.rockspec @@ -5,6 +5,10 @@ source = { url = 'git+https://github.com/tarantool/ddl.git' } +description = { + license = 'BSD', +} + dependencies = { 'lua >= 5.1'; 'tarantool'; From aff65b87bf9e12bb90faab1ac14c8794af45e9bb Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Sat, 27 Apr 2024 18:56:55 +0300 Subject: [PATCH 2/2] release 1.7.1 Overview This release adds license to the module. Added - BSD License (#125). --- CHANGELOG.md | 2 +- ddl/version.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c35fb46..ab95a00 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.7.1] - 2024-05-02 ### Added diff --git a/ddl/version.lua b/ddl/version.lua index 1eb49f9..5def700 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.7.0' +return '1.7.1'