diff --git a/CHANGELOG.md b/CHANGELOG.md index c5fdb3f2f..b451e542a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.7.0] - 2020-02-10 + +### Added + +- tests: Add bdd test for integration test (#81) +- docs/design, pkg/iowrap: Add and implement proposal 10-callback-reader (#88) + +### Removed + +- docs/design, services: Add and implement proposal 9-remove-storager-init (#79)- + ## [v0.6.0] - 2020-01-13 ### Added @@ -127,7 +138,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Add pair based option and metadata support. - Add qingstor services. -[Unreleased]: https://github.com/Xuanwo/storage/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/Xuanwo/storage/compare/v0.7.0...HEAD +[v0.7.0]: https://github.com/Xuanwo/storage/compare/v0.6.0...v0.7.0 [v0.6.0]: https://github.com/Xuanwo/storage/compare/v0.5.0...v0.6.0 [v0.5.0]: https://github.com/Xuanwo/storage/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/Xuanwo/storage/compare/v0.3.0...v0.4.0 diff --git a/README.md b/README.md index 5dc7da93f..fb5827266 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ err := store.List("prefix", pairs.WithFileFunc(func(*types.Object){ ch <- o })) if err != nil { - log.Printf("storager listdir failed: %v", err) + log.Printf("storager list failed: %v", err) } ``` diff --git a/docs/design/10-callback-reader.md b/docs/design/10-callback-reader.md index 449ac72aa..112570786 100644 --- a/docs/design/10-callback-reader.md +++ b/docs/design/10-callback-reader.md @@ -1,6 +1,6 @@ --- author: Xuanwo -status: candidate +status: finished updated_at: 2020-02-09 --- diff --git a/docs/design/9-remove-storager-init.md b/docs/design/9-remove-storager-init.md index c7ffbc943..01132ef42 100644 --- a/docs/design/9-remove-storager-init.md +++ b/docs/design/9-remove-storager-init.md @@ -1,6 +1,6 @@ --- author: Xuanwo -status: candidate +status: finished updated_at: 2020-01-16 updates: [3](./3-support-service-init-via-config-string.md) ---