From 2babff849fc080e1d27fa99621e8258f6fd65445 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sat, 17 Dec 2016 05:28:53 +1100 Subject: [PATCH] Release v0.1 --- NEWS | 2 +- README.md | 4 +--- http-scm-0.rockspec => http-0.1-0.rockspec | 5 +++-- http/version.lua | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) rename http-scm-0.rockspec => http-0.1-0.rockspec (93%) diff --git a/NEWS b/NEWS index 92e78a80..78cb496b 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -UNRELEASED +0.1 - 2016-12-17 - Support for HTTP versions 1, 1.1 and 2 - Provides both client and server APIs diff --git a/README.md b/README.md index dd9398a8..3180c1ab 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,13 @@ Can be found at [https://daurnimator.github.io/lua-http/](https://daurnimator.gi [![Build Status](https://travis-ci.org/daurnimator/lua-http.svg)](https://travis-ci.org/daurnimator/lua-http) [![Coverage Status](https://coveralls.io/repos/daurnimator/lua-http/badge.svg?branch=master&service=github)](https://coveralls.io/github/daurnimator/lua-http?branch=master) - - First release impending! - # Installation It's recommended to install lua-http by using [luarocks](https://luarocks.org/). This will automatically install run-time lua dependencies for you. - $ luarocks install --server=http://luarocks.org/dev http + $ luarocks install http ## Dependencies diff --git a/http-scm-0.rockspec b/http-0.1-0.rockspec similarity index 93% rename from http-scm-0.rockspec rename to http-0.1-0.rockspec index af1601fc..f6984354 100644 --- a/http-scm-0.rockspec +++ b/http-0.1-0.rockspec @@ -1,5 +1,5 @@ package = "http" -version = "scm-0" +version = "0.1-0" description = { summary = "HTTP library for Lua"; @@ -8,7 +8,8 @@ description = { } source = { - url = "git+https://github.com/daurnimator/lua-http.git"; + url = "https://github.com/daurnimator/lua-http/archive/v0.1.zip"; + dir = "lua-http-0.1"; } dependencies = { diff --git a/http/version.lua b/http/version.lua index 396dcf24..e7aa26da 100644 --- a/http/version.lua +++ b/http/version.lua @@ -5,5 +5,5 @@ It should be updated as part of the release process return { name = "lua-http"; - version = "scm"; + version = "0.1"; }