Skip to content

Commit

Permalink
Release v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daurnimator committed Dec 16, 2016
1 parent 17591cd commit 2babff8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions http-scm-0.rockspec → http-0.1-0.rockspec
@@ -1,5 +1,5 @@
package = "http"
version = "scm-0"
version = "0.1-0"

description = {
summary = "HTTP library for Lua";
Expand All @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion http/version.lua
Expand Up @@ -5,5 +5,5 @@ It should be updated as part of the release process

return {
name = "lua-http";
version = "scm";
version = "0.1";
}

0 comments on commit 2babff8

Please sign in to comment.