Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
Follows up #134
  • Loading branch information
ligurio committed Oct 28, 2021
1 parent e0bdab5 commit 4db9aa3
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
1 change: 1 addition & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
36 changes: 36 additions & 0 deletions rockspecs/http-1.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion rpm/tarantool-http.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4db9aa3

Please sign in to comment.