Skip to content

Commit

Permalink
[#246] Release v0.15.2
Browse files Browse the repository at this point in the history
Signed-off-by: Evgenii Stratonikov <[email protected]>
  • Loading branch information
fyrchik committed Jun 7, 2022
1 parent 53d9a24 commit a92ad8b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog
Changelog for NeoFS Contract

## [0.15.2] - 2022-06-07

### Added
- `container.Count` method (#242)

### Changed
- Update neo-go to v0.99.0 (#246)

## [0.15.1] - 2022-04-13

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const (
major = 0
minor = 15
patch = 1
patch = 2

// 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
// any migration routines.
prevMajor = 0
prevMinor = 15
prevPatch = 0
prevPatch = 1

Version = major*1_000_000 + minor*1_000 + patch

Expand Down

0 comments on commit a92ad8b

Please sign in to comment.