Skip to content

Commit

Permalink
[version] Release 0.0.7
Browse files Browse the repository at this point in the history
- move cast package to util/cast
- deprecated config package, move to legacy/config
  • Loading branch information
at15 committed Aug 8, 2018
1 parent 5ff6087 commit 0066ca3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog


## v0.0.7

[release](https://github.com/dyweb/gommon/releases/tag/0.0.7)

- deprecated config v1, move it to legacy folder
- move cast into util

## v0.0.6

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PKGS=./errors/... ./generator/... ./log/... ./noodle/... ./requests/... ./structure/... ./util/...
PKGST=./cmd ./errors ./generator ./log ./noodle ./requests ./structure ./util
VERSION = 0.0.1
VERSION = 0.0.7
BUILD_COMMIT = $(shell git rev-parse HEAD)
BUILD_TIME = $(shell date +%Y-%m-%dT%H:%M:%S%z)
CURRENT_USER = $(USER)
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Gommon is a collection of common util libraries written in Go.

It has the following components:

- [config](config) A YAML config reader with template support
- [errors](errors) Typed error with context, multi error
- [generator](generator) Render go template, generate methods for logger interface based on `gommon.yml`
- [log](log) A Javaish logger for Go, application can set level for their dependencies based on package, struct
Expand All @@ -24,6 +23,7 @@ It has the following components:

Legacy

- [config v1](config) A YAML config reader with template support
- [log v1](legacy/log) A logrus like structured logger
- [Runner](legacy/runner) A os/exec wrapper

Expand All @@ -49,8 +49,6 @@ Removed
- `dep ensure`
- `make test`



## License

MIT
Expand Down
5 changes: 0 additions & 5 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# Roadmap

## 0.0.7

- [ ] simplify config package, no more template and get value by string path
- [ ] move cast into util

## 0.0.8

- [x] test coverage for multiple packages
Expand Down
1 change: 0 additions & 1 deletion directory.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## Project Layout

- [cmd/gommon](cmd/gommon) the command line application
- [config](config) config file reader
- [doc](doc) documentation
- [errors](errors) error wrapping and multi error
- [generator](generator) generating interface methods, render go template, protobuf etc.
Expand Down
2 changes: 1 addition & 1 deletion legacy/config/pkg.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package config supports go text/template, environment and self defined variables
package config // import "github.com/dyweb/gommon/config"
package config

import (
"github.com/dyweb/gommon/util/logutil"
Expand Down

0 comments on commit 0066ca3

Please sign in to comment.