From 6d0b3135ff2337be338a8c5cef5449ac3a06b58e Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Thu, 26 Aug 2021 19:02:40 +0300 Subject: [PATCH] =?UTF-8?q?Release=20v1.29.0=20-=20Anmyeondo=20(=EC=95=88?= =?UTF-8?q?=EB=A9=B4=EB=8F=84,=20=E5=AE=89=E7=9C=A0=E5=B3=B6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pavel Karpy --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 1 + pkg/version.go | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 237ad63..fd0cf41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [1.29.0] - 2021-08-27 - Anmyeondo (안면도, 安眠島) + +### Fixed + +- Well-known BasicACL constants to fit the specification (#330, #334). +- Linter warnings (#335). + +### Added + +- Support for `COMMON_PREFIX` filter operation for object attributes (#331). +- Missing well-known eACL filter setters (#333). + +### Removed + +- `FilterObjectParent` well-known object related filter key (#333). + +### Updated + +- Go version to `1.16` (#335). +- Tests in CI to run on `1.16` and `1.17` Go versions (#335). + ## [1.28.3] - 2021-07-07 ### Fixed @@ -690,3 +711,4 @@ Initial public release [1.28.1]: https://github.com/nspcc-dev/neofs-api-go/compare/v1.28.0...v1.28.1 [1.28.2]: https://github.com/nspcc-dev/neofs-api-go/compare/v1.28.1...v1.28.2 [1.28.3]: https://github.com/nspcc-dev/neofs-api-go/compare/v1.28.2...v1.28.3 +[1.29.0]: https://github.com/nspcc-dev/neofs-api-go/compare/v1.28.3...v1.29.0 diff --git a/README.md b/README.md index b7dcedb..61cccb0 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ versions and SDK layer working with all of them in a handy way. |v1.26.x|[v2.6.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.6.0)| |v1.27.x|[v2.7.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.7.0)| |v1.28.x|[v2.8.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.8.0)| +|v1.29.x|[v2.9.1](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.9.1)| ## Contributing diff --git a/pkg/version.go b/pkg/version.go index 928566c..85066eb 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -9,7 +9,7 @@ import ( // Version represents v2-compatible version. type Version refs.Version -const sdkMjr, sdkMnr = 2, 8 +const sdkMjr, sdkMnr = 2, 9 // NewVersionFromV2 wraps v2 Version message to Version. //