Skip to content

Commit e84f88a

Browse files
committed
Readme update for v0.3 release
1 parent 09c7907 commit e84f88a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
Robust & Easy to use model mapper and utility methods for Go. Typical methods increase productivity and make Go developement more fun :smile:
44

5-
**v0.2 released and tagged on Jan 26, 2016**
5+
***v0.3 released and tagged on Feb 16, 2016***
66

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

99
## Features
10-
go-model provides handy methods (`Copy`, `Map`, `Clone`, `IsZero`, etc.) to process struct with below highlighted features. It's born from typical need while developing Go application or utility. I hope it's helpful!
10+
go-model provides [handy methods](#methods) to process `struct` with below highlighted features. It's born from typical need while developing Go application or utility. I hope it's helpful!
1111
* Embedded/Anonymous struct
1212
* Multi-level nested struct/map/slice
1313
* Pointer and non-pointer within struct/map/slice
1414
* Struct within map and slice
15-
* Embedded/Anonymous fields appear in map at same level as represented by Go
15+
* Embedded/Anonymous struct fields appear in map at same level as represented by Go
1616
* Interface within struct/map/slice
1717
* Add global no traverse type to the list or use `notraverse` option in the struct field
1818
* Options to name map key, omit empty fields, and instruct not to traverse with struct/map/slice
@@ -76,6 +76,7 @@ I want to convert my struct into Map (`map[string]interface{}`). Sure, go-model
7676
// -, name, omitempty, notraverse to get desired result.
7777
sr, _ := myapp.GetSearchResult( /* params here */ )
7878

79+
// Embedded/Anonymous struct fields appear in map at same level as represented by Go
7980
srchResMap, err := model.Map(sr)
8081
fmt.Println("Error:", err)
8182

@@ -163,5 +164,8 @@ BTW, I'd like to know what you think about go-model. Kindly open an issue or sen
163164
## Author
164165
Jeevanandam M. - [email protected]
165166

167+
## Contributors
168+
Have a look on [Contributors](https://github.com/jeevatkm/go-model/graphs/contributors) page.
169+
166170
## License
167171
go-model released under MIT license, refer [LICENSE](LICENSE) file.

0 commit comments

Comments
 (0)