Skip to content

Commit 85d0444

Browse files
committed
readme and version bump for v0.11.0 release
1 parent a4d8ba9 commit 85d0444

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

README.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1-
# ahttp - aah framework
2-
[![Build Status](https://travis-ci.org/go-aah/ahttp.svg?branch=master)](https://travis-ci.org/go-aah/ahttp) [![codecov](https://codecov.io/gh/go-aah/ahttp/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/ahttp/branch/master) [![Go Report Card](https://goreportcard.com/badge/aahframework.org/ahttp.v0-unstable)](https://goreportcard.com/report/aahframework.org/ahttp.v0-unstable) [![Version](https://img.shields.io/badge/version-0.10-blue.svg)](https://github.com/go-aah/ahttp/releases/latest) [![GoDoc](https://godoc.org/aahframework.org/ahttp.v0-unstable?status.svg)](https://godoc.org/aahframework.org/ahttp.v0-unstable) [![License](https://img.shields.io/github/license/go-aah/ahttp.svg)](LICENSE) [![Twitter](https://img.shields.io/badge/[email protected])](https://twitter.com/aahframework)
1+
<p align="center">
2+
<img src="https://cdn.aahframework.org/assets/img/aah-logo-64x64.png" />
3+
<h2 align="center">HTTP extension library by aah framework</h2>
4+
</p>
5+
<p align="center">
6+
<p align="center"><a href="https://travis-ci.org/go-aah/ahttp"><img src="https://travis-ci.org/go-aah/ahttp.svg?branch=master" alt="Build Status"></a> <a href="https://codecov.io/gh/go-aah/ahttp/branch/master"><img src="https://codecov.io/gh/go-aah/ahttp/branch/master/graph/badge.svg" alt="Code Coverage"></a> <a href="https://goreportcard.com/report/aahframework.org/ahttp.v0"><img src="https://goreportcard.com/badge/aahframework.org/ahttp.v0" alt="Go Report Card"></a> <a href="https://github.com/go-aah/ahttp/releases/latest"><img src="https://img.shields.io/badge/version-0.11.0-blue.svg" alt="Release Version"></a> <a href="https://godoc.org/aahframework.org/ahttp.v0"><img src="https://godoc.org/aahframework.org/ahttp.v0?status.svg" alt="Godoc"></a> <a href="https://twitter.com/aahframework"><img src="https://img.shields.io/badge/[email protected]" alt="Twitter @aahframework"></a></p>
7+
</p>
38

4-
***v0.10 [released](https://github.com/go-aah/ahttp/releases/latest) and tagged on Sep 01, 2017***
9+
HTTP extension Library is used to handle/process Request and Response (headers, body, gzip, etc).
510

6-
HTTP Library built to process, manipulate Request and Response (headers, body, gzip, etc).
11+
### News
712

8-
*`ahttp` developed for aah framework. However, it's an independent library, can be used separately with any `Go` language project. Feel free to use it.*
13+
* `v0.11.0` [released](https://github.com/go-aah/ahttp/releases/latest) and tagged on Jul 06, 2018.
14+
15+
## Installation
916

10-
# Installation
11-
#### Stable Version - Production Ready
1217
```bash
13-
# install the library
1418
go get -u aahframework.org/ahttp.v0
1519
```
1620

17-
Visit official website https://aahframework.org to learn more.
21+
Visit official website https://aahframework.org to learn more about `aah` framework.

version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Jeevanandam M (https://github.com/jeevatkm)
2-
// go-aah/ahttp source code and usage is governed by a MIT style
2+
// aahframework.org/ahttp source code and usage is governed by a MIT style
33
// license that can be found in the LICENSE file.
44

55
package ahttp
66

77
// Version no. of aah framework ahttp library
8-
const Version = "0.11.0-edge"
8+
const Version = "0.11.0"

0 commit comments

Comments
 (0)