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. //