Skip to content

Commit 1ce0c2c

Browse files
committed
readme update for v0.8.0 release
1 parent b480b2a commit 1ce0c2c

File tree

2 files changed

+16
-25
lines changed

2 files changed

+16
-25
lines changed

README.md

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,20 @@
1-
# essentials - aah framework
2-
[![Build Status](https://travis-ci.org/go-aah/essentials.svg?branch=master)](https://travis-ci.org/go-aah/essentials) [![codecov](https://codecov.io/gh/go-aah/essentials/branch/master/graph/badge.svg)](https://codecov.io/gh/go-aah/essentials/branch/master) [![Go Report Card](https://goreportcard.com/badge/aahframework.org/essentials.v0)](https://goreportcard.com/report/aahframework.org/essentials.v0)
3-
[![Version](https://img.shields.io/badge/version-0.7-blue.svg)](https://github.com/go-aah/essentials/releases/latest) [![GoDoc](https://godoc.org/aahframework.org/essentials.v0?status.svg)](https://godoc.org/aahframework.org/essentials.v0) [![License](https://img.shields.io/github/license/go-aah/essentials.svg)](LICENSE)
1+
<p align="center">
2+
<img src="https://cdn.aahframework.org/assets/img/aah-logo-64x64.png" />
3+
<h2 align="center">Essentials by aah framework</h2>
4+
<p>Essentials contains simple & useful util functions for Go. aah framework utilizes essentials (aka `ess`) library across. Essentials library complements to standard packages, refer Godoc to know more.</p>
5+
</p>
6+
<p align="center">
7+
<p align="center"><a href="https://travis-ci.org/go-aah/essentials"><img src="https://travis-ci.org/go-aah/essentials.svg?branch=master" alt="Build Status"></a> <a href="https://codecov.io/gh/go-aah/essentials/branch/master"><img src="https://codecov.io/gh/go-aah/essentials/branch/master/graph/badge.svg" alt="Code Coverage"></a> <a href="https://goreportcard.com/report/aahframework.org/essentials.v0"><img src="https://goreportcard.com/badge/aahframework.org/essentials.v0" alt="Go Report Card"></a> <a href="https://github.com/go-aah/essentials/releases/latest"><img src="https://img.shields.io/badge/version-0.8.0-blue.svg" alt="Release Version"></a> <a href="https://godoc.org/aahframework.org/essentials.v0"><img src="https://godoc.org/aahframework.org/essentials.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>
8+
</p>
49

5-
***v0.7 [released](https://github.com/go-aah/essentials/releases/latest) and tagged on Sep 29, 2017***
10+
### News
611

7-
`essentials` contains simple & useful utils methods for Go. aah framework utilizes essentials (aka `ess`) library across. Essentials library complements with handy methods, refer godoc to know more about methods:
12+
* `v0.8.0` [released](https://github.com/go-aah/essentials/releases/latest) and tagged on Jun 20, 2018.
813

9-
* filepath
10-
* GUID (Globally Unique Identifier - Mongo Object ID algorithm)
11-
* random string, random byte generation at fixed length
12-
* go
13-
* io
14-
* os
15-
* reflect
16-
* string
17-
* encode
18-
* archive (zip)
14+
## Installation
1915

20-
*`essentials` developed for aah framework. However, it's an independent library, can be used separately with any `Go` language project. Feel free to use it.*
21-
22-
# Installation
23-
#### Stable Version - Production Ready
24-
```sh
25-
# install the library
16+
```bash
2617
go get -u aahframework.org/essentials.v0
2718
```
2819

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

version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// go-aah/essentials source code and usage is governed by a MIT style
33
// license that can be found in the LICENSE file.
44

5-
// Package ess provides simple & useful utils for Go. aah framework utilizes
6-
// essentials library across. It's pretty handy you can use it too :)
5+
// Package ess provides simple & useful util functions for Go. aah framework
6+
// utilizes essentials library across.
77
package ess
88

99
// Version no. of essentials library
10-
var Version = "0.8.0-edge"
10+
var Version = "0.8.0"

0 commit comments

Comments
 (0)