diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c12381..03a1997 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**v0.8.0** 2018-12-12 Jeevanandam M + * Handling external and native fs more effectively + **v0.7.0** 2018-12-07 Jeevanandam M * Removed vfs module dependency * Added FileSystem interface to extending possibility diff --git a/README.md b/README.md index 93faebf..990eaf7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,9 @@ Forge is a configuration syntax and parser forked for [aah framework](https://aa ## Installation -`go get -u github.com/go-aah/forge` +```bash +require github.com/go-aah/forge v0.8.0 +``` ## Example diff --git a/forge.go b/forge.go index 561ddad..b27bcf5 100644 --- a/forge.go +++ b/forge.go @@ -106,7 +106,7 @@ import ( ) // Version represent current release version of forge. -var Version = "0.7.0" +var Version = "0.8.0" // ParseBytes takes a []byte representation of the config file, parses it // and responds with `*Section` and potentially an `error` if it cannot