Skip to content

Commit

Permalink
#13 added go.mod, version bump and readme update for release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Aug 28, 2018
1 parent f29e3a6 commit 950d1bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# go-model [![Stability: Sustained](https://masterminds.github.io/stability/sustained.svg)](https://masterminds.github.io/stability/sustained.html) [![Build Status](https://travis-ci.org/jeevatkm/go-model.svg?branch=master)](https://travis-ci.org/jeevatkm/go-model) [![codecov](https://codecov.io/gh/jeevatkm/go-model/branch/master/graph/badge.svg)](https://codecov.io/gh/jeevatkm/go-model/branch/master) [![GoReport](https://goreportcard.com/badge/jeevatkm/go-model)](https://goreportcard.com/report/jeevatkm/go-model) [![Version](https://img.shields.io/badge/version-1.0-blue.svg)](https://github.com/jeevatkm/go-model/releases/latest) [![GoDoc](https://godoc.org/github.com/jeevatkm/go-model?status.svg)](https://godoc.org/github.com/jeevatkm/go-model) [![License](https://img.shields.io/github/license/jeevatkm/go-model.svg)](LICENSE)
# go-model [![Stability: Sustained](https://masterminds.github.io/stability/sustained.svg)](https://masterminds.github.io/stability/sustained.html) [![Build Status](https://travis-ci.org/jeevatkm/go-model.svg?branch=master)](https://travis-ci.org/jeevatkm/go-model) [![codecov](https://codecov.io/gh/jeevatkm/go-model/branch/master/graph/badge.svg)](https://codecov.io/gh/jeevatkm/go-model/branch/master) [![GoReport](https://goreportcard.com/badge/jeevatkm/go-model)](https://goreportcard.com/report/jeevatkm/go-model) [![Version](https://img.shields.io/badge/version-1.1.0-blue.svg)](https://github.com/jeevatkm/go-model/releases/latest) [![GoDoc](https://godoc.org/github.com/jeevatkm/go-model?status.svg)](https://godoc.org/github.com/jeevatkm/go-model) [![License](https://img.shields.io/github/license/jeevatkm/go-model.svg)](LICENSE)

Robust & Easy to use model mapper and utility methods for Go `struct`. Typical methods increase productivity and make Go development more fun :smile:

***v1.0 [released](https://github.com/jeevatkm/go-model/releases/latest) and tagged on May 22, 2017***
***v1.1.0 [released](https://github.com/jeevatkm/go-model/releases/latest) and tagged on Aug 27, 2018***

go-model tested with Go `v1.2` and above.

Expand All @@ -27,8 +27,13 @@ go-model library provides [handy methods](#supported-methods) to process `struct
#### Stable Version - Production Ready
Please refer section [Versioning](#versioning) for detailed info.

**go.mod**
```sh
require gopkg.in/jeevatkm/go-model.v1 v1.1.0
```

**go get**
```sh
# install the library
go get -u gopkg.in/jeevatkm/go-model.v1
```

Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module gopkg.in/jeevatkm/go-model.v1
2 changes: 1 addition & 1 deletion model.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const (

var (
// Version # of go-model library
Version = "1.0"
Version = "1.1.0"

// NoTraverseTypeList keeps track of no-traverse type list at library level
noTraverseTypeList map[reflect.Type]bool
Expand Down

0 comments on commit 950d1bd

Please sign in to comment.