Skip to content

Commit

Permalink
Release v0.14.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
  • Loading branch information
alexvanin committed Feb 7, 2022
1 parent b0872bb commit 5758dad
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog
Changelog for NeoFS Contract

## [0.14.2] - 2022-02-07

### Fixed
- Remove duplicate records in NNS contract (#196)

### Changed
- Evict container estimations on every put (#215)
- Update neo-go to v0.98.1

## [0.14.1] - 2022-01-24

### Fixed
Expand Down Expand Up @@ -319,6 +328,8 @@ Preview4-testnet version of NeoFS contracts.

Preview4 compatible contracts.

[0.14.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.1...v0.14.2
[0.14.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.2...v0.14.0
[0.13.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.1...v0.13.2
[0.13.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.0...v0.13.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Side chain contracts:

To compile smart contracts you need:

- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.0
- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.1

## Compilation

Expand Down
4 changes: 2 additions & 2 deletions common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const (
major = 0
minor = 14
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 = 13
prevMinor = 14
prevPatch = 0

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

0 comments on commit 5758dad

Please sign in to comment.