From 4db9aa3a16a767fd82b2125984af16c262b3ec6b Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov Date: Thu, 28 Oct 2021 16:58:58 +0300 Subject: [PATCH] Release 1.1.1 Follows up #134 --- CHANGELOG.md | 2 ++ debian/control | 1 + rockspecs/http-1.1.1-1.rockspec | 36 +++++++++++++++++++++++++++++++++ rpm/tarantool-http.spec | 3 ++- 4 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 rockspecs/http-1.1.1-1.rockspec diff --git a/CHANGELOG.md b/CHANGELOG.md index cc0990c..f956001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.1.1] - 2021-10-28 + ### Changed - Revert all changes related to http v2 (#134). diff --git a/debian/control b/debian/control index 6e6db23..95ea01a 100644 --- a/debian/control +++ b/debian/control @@ -6,6 +6,7 @@ Build-Depends: debhelper (>= 9), cdbs, cmake (>= 2.8), tarantool-dev (>= 1.7.5.0) Standards-Version: 3.9.6 +Version: 1:1.1.1 Homepage: https://github.com/tarantool/http Vcs-Git: git://github.com/tarantool/http.git Vcs-Browser: https://github.com/tarantool/http diff --git a/rockspecs/http-1.1.1-1.rockspec b/rockspecs/http-1.1.1-1.rockspec new file mode 100644 index 0000000..e50befa --- /dev/null +++ b/rockspecs/http-1.1.1-1.rockspec @@ -0,0 +1,36 @@ +package = 'http' +version = '1.1.1-1' +source = { + url = 'git://github.com/tarantool/http.git', + tag = '1.1.1', +} +description = { + summary = "HTTP server for Tarantool", + homepage = 'https://github.com/tarantool/http/', + license = 'BSD', +} +dependencies = { + 'lua >= 5.1' +} +external_dependencies = { + TARANTOOL = { + header = "tarantool/module.h" + } +} +build = { + type = 'builtin', + + modules = { + ['http.lib'] = { + sources = 'http/lib.c', + incdirs = { + "$(TARANTOOL_INCDIR)" + } + }, + ['http.server'] = 'http/server.lua', + ['http.mime_types'] = 'http/mime_types.lua', + ['http.codes'] = 'http/codes.lua', + } +} + +-- vim: syntax=lua diff --git a/rpm/tarantool-http.spec b/rpm/tarantool-http.spec index 10feca1..ee00cb5 100644 --- a/rpm/tarantool-http.spec +++ b/rpm/tarantool-http.spec @@ -1,6 +1,7 @@ Name: tarantool-http -Version: 1.0.0 +Version: 1.1.1 Release: 1%{?dist} +Epoch: 1 Summary: HTTP server for Tarantool Group: Applications/Databases License: BSD