From 0789988eaf10e43b846ec61b2e29d20fe06c9db5 Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Fri, 6 Jul 2018 22:18:35 -0700 Subject: [PATCH] readme update and version bump for v0.12.0 release --- README.md | 24 ++++++++++++++---------- version.go | 4 ++-- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 1fe41b0..73bdcb1 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,21 @@ -# router - aah framework -[![Build Status](https://travis-ci.org/go-aah/router.svg?branch=master)](https://travis-ci.org/go-aah/router) [![codecov](https://codecov.io/gh/go-aah/router/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/router/branch/master) [![Go Report Card](https://goreportcard.com/badge/aahframework.org/router.v0)](https://goreportcard.com/report/aahframework.org/router.v0) [![Version](https://img.shields.io/badge/version-0.11-blue.svg)](https://github.com/go-aah/router/releases/latest) [![GoDoc](https://godoc.org/aahframework.org/router.v0?status.svg)](https://godoc.org/aahframework.org/router.v0) [![License](https://img.shields.io/github/license/go-aah/router.svg)](LICENSE) [![Twitter](https://img.shields.io/badge/twitter-@aahframework-55acee.svg)](https://twitter.com/aahframework) +

+ +

Router by aah framework

+

+

+

Build Status Code Coverage Go Report Card Release Version Godoc Twitter @aahframework

+

-***v0.11 [released](https://github.com/go-aah/router/releases/latest) and tagged on Mar 27, 2018*** +[HTTP Router](http://docs.aahframework.org/routing.html) brings domain and sub-domains routing, it internally uses customized version of radix tree implementation from `github.com/julienschmidt/httprouter` developer by `@julienschmidt`. -HTTP Router it supports domain and sub-domains routing. It's built using radix tree routing algorithm of [httprouter](https://github.com/julienschmidt/httprouter) library. +### News -*`router` developed for aah framework. However, it's an independent library, can be used separately with any `Go` language project. Feel free to use it.* + * `v0.12.0` [released](https://github.com/go-aah/router/releases/latest) and tagged on Jul 06, 2018. -# Installation -#### Stable Version - Production Ready -```sh -# install the library +## Installation + +```bash go get -u aahframework.org/router.v0 ``` -Visit official website https://aahframework.org to learn more. +Visit official website https://aahframework.org to learn more about `aah` framework. diff --git a/version.go b/version.go index 4cf9bc1..5f02280 100644 --- a/version.go +++ b/version.go @@ -1,8 +1,8 @@ // Copyright (c) Jeevanandam M. (https://github.com/jeevatkm) -// go-aah/router source code and usage is governed by a MIT style +// aahframework.org/router source code and usage is governed by a MIT style // license that can be found in the LICENSE file. package router // Version no. of aah framework router library -const Version = "0.12.0-edge" +const Version = "0.12.0"