Skip to content

Commit 4db9aa3

Browse files
committed
Release 1.1.1
Follows up #134
1 parent e0bdab5 commit 4db9aa3

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [1.1.1] - 2021-10-28
10+
911
### Changed
1012

1113
- Revert all changes related to http v2 (#134).

debian/control

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Build-Depends: debhelper (>= 9), cdbs,
66
cmake (>= 2.8),
77
tarantool-dev (>= 1.7.5.0)
88
Standards-Version: 3.9.6
9+
Version: 1:1.1.1
910
Homepage: https://github.com/tarantool/http
1011
Vcs-Git: git://github.com/tarantool/http.git
1112
Vcs-Browser: https://github.com/tarantool/http

rockspecs/http-1.1.1-1.rockspec

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package = 'http'
2+
version = '1.1.1-1'
3+
source = {
4+
url = 'git://github.com/tarantool/http.git',
5+
tag = '1.1.1',
6+
}
7+
description = {
8+
summary = "HTTP server for Tarantool",
9+
homepage = 'https://github.com/tarantool/http/',
10+
license = 'BSD',
11+
}
12+
dependencies = {
13+
'lua >= 5.1'
14+
}
15+
external_dependencies = {
16+
TARANTOOL = {
17+
header = "tarantool/module.h"
18+
}
19+
}
20+
build = {
21+
type = 'builtin',
22+
23+
modules = {
24+
['http.lib'] = {
25+
sources = 'http/lib.c',
26+
incdirs = {
27+
"$(TARANTOOL_INCDIR)"
28+
}
29+
},
30+
['http.server'] = 'http/server.lua',
31+
['http.mime_types'] = 'http/mime_types.lua',
32+
['http.codes'] = 'http/codes.lua',
33+
}
34+
}
35+
36+
-- vim: syntax=lua

rpm/tarantool-http.spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Name: tarantool-http
2-
Version: 1.0.0
2+
Version: 1.1.1
33
Release: 1%{?dist}
4+
Epoch: 1
45
Summary: HTTP server for Tarantool
56
Group: Applications/Databases
67
License: BSD

0 commit comments

Comments
 (0)