Skip to content

Commit

Permalink
[release] Release 0.0.10
Browse files Browse the repository at this point in the history
- add common error types in errors/errortype
- fix broken logger identity induction in go1.12
  • Loading branch information
at15 committed Apr 13, 2019
1 parent 5f3a7b2 commit eccec10
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 10 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## v0.0.10

[release](https://github.com/dyweb/gommon/releases/tag/0.0.10) [closed issues](https://github.com/dyweb/gommon/issues?q=is%3Aissue+milestone%3A0.0.10+is%3Aclosed)

Breaking change

- [#74](https://github.com/dyweb/gommon/issues/74) Switched to go mod from dep

New feature

- [#76](https://github.com/dyweb/gommon/issues/76) created `errors/errortype` package for inspecting standard library error types,
and add three common error interfaces `ErrNotFound`, `ErrAlreadyExists`, `ErrNotImplemented`

Fixed

- [#108](https://github.com/dyweb/gommon/issues/108) log package was using `init` to induct package level logger, it is changed to `init.ializers`

## v0.0.9

[release](https://github.com/dyweb/gommon/releases/tag/0.0.9) [closed issues](https://github.com/dyweb/gommon/issues?q=is%3Aissue+milestone%3A0.0.9+is%3Aclosed)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ GO = GO111MODULE=on go
# -- build vars ---
PKGS =./errors/... ./generator/... ./log/... ./noodle/... ./structure/... ./util/...
PKGST =./cmd ./errors ./generator ./log ./noodle ./structure ./util
VERSION = 0.0.9
VERSION = 0.0.10
BUILD_COMMIT := $(shell git rev-parse HEAD)
BUILD_TIME := $(shell date +%Y-%m-%dT%H:%M:%S%z)
CURRENT_USER = $(USER)
Expand Down
20 changes: 11 additions & 9 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,27 @@

## Up coming

### 0.0.10
### 0.0.11

- [ ] simplify log package, move deprecated package to its own repo
- [ ] requests, download and upload file, a curl like example

From 0.0.10

- [ ] support better logging for errors

From 0.0.9

- [ ] error code
- [ ] organized error types
- [ ] explain internals of some implementation
- [ ] (optional) extension for collecting errors using third party services
- [ ] switch from dep to go mod

New

- [ ] support better logging for errors

### 0.0.11
## Finished

- [ ] requests, download and upload file, a curl like example
### 0.0.10

## Finished
- [x] switch from dep to go mod

### 0.0.9

Expand Down

0 comments on commit eccec10

Please sign in to comment.