diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b430c69..8c66e168e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v4.4.0] - 2021-07-22 + +### Added + +- docs: GSP-669 Feature Lifecycle (#669) +- definitions: Implement GSP-86 Add CreateLink (#674) + +### Changed + +- docs: Update rfc README, fix GSP-669 typo (#673) +- cmd: Remove not used package in service.tmpl (#679) +- definitions: Implement GSP-41 Turn Pair Expire into Duration (#681) +- tests: Split from cmd definitions (#685) + +### Upgraded + +- build(deps): Bump github.com/google/uuid from 1.2.0 to 1.3.0 (675) + ## [v4.3.2] - 2021-07-15 ### Fixed @@ -17,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ### Fixed -- fix: Add pkg/endpoint back to avoid breaking other projects (#667) +- pkg: Add pkg/endpoint back to avoid breaking other projects (#667) ### Upgraded @@ -588,7 +606,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/beyondstorage/go-storage/compare/v4.3.2...HEAD +[Unreleased]: https://github.com/beyondstorage/go-storage/compare/v4.4.0...HEAD +[v4.4.0]: https://github.com/beyondstorage/go-storage/compare/v4.3.2...v4.4.0 [v4.3.2]: https://github.com/beyondstorage/go-storage/compare/v4.3.1...v4.3.2 [v4.3.1]: https://github.com/beyondstorage/go-storage/compare/v4.3.0...v4.3.1 [v4.3.0]: https://github.com/beyondstorage/go-storage/compare/v4.2.0...v4.3.0 diff --git a/go.mod b/go.mod index 6a92a64ac..5bd36fa9f 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/Xuanwo/templateutils v0.1.0 github.com/dave/dst v0.26.2 github.com/golang/mock v1.6.0 - github.com/google/uuid v1.2.0 + github.com/google/uuid v1.3.0 github.com/kevinburke/go-bindata v3.22.0+incompatible github.com/pelletier/go-toml v1.9.3 github.com/sirupsen/logrus v1.8.1 diff --git a/go.sum b/go.sum index adb2cdd8a..66b893e7d 100644 --- a/go.sum +++ b/go.sum @@ -12,8 +12,8 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/google/pprof v0.0.0-20181127221834-b4f47329b966/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/kevinburke/go-bindata v3.22.0+incompatible h1:/JmqEhIWQ7GRScV0WjX/0tqBrC5D21ALg0H0U/KZ/ts= github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM=