diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f3f3cf0..8785a313 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog Changelog for NeoFS Contract +## [0.15.3] - 2022-07-22 + +### Added +- Allow to build archive from source (#250) + +### Changed +- Update neo-go to the latest version +- Use proper type for integer constants (#248) + ## [0.15.2] - 2022-06-07 ### Added diff --git a/VERSION b/VERSION index a240c92a..d5bd67d2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.15.2 +v0.15.3 diff --git a/common/version.go b/common/version.go index fcbcbe84..fc5b2464 100644 --- a/common/version.go +++ b/common/version.go @@ -5,7 +5,7 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std" const ( major = 0 minor = 15 - patch = 2 + patch = 3 // Versions from which an update should be performed. // These should be used in a group (so prevMinor can be equal to minor if there are