Skip to content

Commit 2babff8

Browse files
committed
Release v0.1
1 parent 17591cd commit 2babff8

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
UNRELEASED
1+
0.1 - 2016-12-17
22

33
- Support for HTTP versions 1, 1.1 and 2
44
- Provides both client and server APIs

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ Can be found at [https://daurnimator.github.io/lua-http/](https://daurnimator.gi
1919
[![Build Status](https://travis-ci.org/daurnimator/lua-http.svg)](https://travis-ci.org/daurnimator/lua-http)
2020
[![Coverage Status](https://coveralls.io/repos/daurnimator/lua-http/badge.svg?branch=master&service=github)](https://coveralls.io/github/daurnimator/lua-http?branch=master)
2121

22-
- First release impending!
23-
2422

2523
# Installation
2624

2725
It's recommended to install lua-http by using [luarocks](https://luarocks.org/).
2826
This will automatically install run-time lua dependencies for you.
2927

30-
$ luarocks install --server=http://luarocks.org/dev http
28+
$ luarocks install http
3129

3230
## Dependencies
3331

http-scm-0.rockspec renamed to http-0.1-0.rockspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package = "http"
2-
version = "scm-0"
2+
version = "0.1-0"
33

44
description = {
55
summary = "HTTP library for Lua";
@@ -8,7 +8,8 @@ description = {
88
}
99

1010
source = {
11-
url = "git+https://github.com/daurnimator/lua-http.git";
11+
url = "https://github.com/daurnimator/lua-http/archive/v0.1.zip";
12+
dir = "lua-http-0.1";
1213
}
1314

1415
dependencies = {

http/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ It should be updated as part of the release process
55

66
return {
77
name = "lua-http";
8-
version = "scm";
8+
version = "0.1";
99
}

0 commit comments

Comments
 (0)