Skip to content

Commit

Permalink
Release 0.17.0 (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-khimov authored Apr 6, 2023
2 parents 715425a + cdc3732 commit 8df64fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
# Changelog
Changelog for NeoFS Contract

## [Unreleased]
## [0.17.0] - 2023-04-06

### Added
- methods to iterate over containers and their sizes (#293, #300, #326)
- `cmd/dump` app that pulls state and data of contracts from remote networks (#324)
- `tests/migration` framework for storage migration testing (#324)
- Dumps of the NeoFS MainNet and TestNet contracts (#324)

### Changed
- Current `common.Version` to v0.17.0 (#324)

### Updated
- `neo-go` to `v0.101.0`
- `neo-go/pkg/interop` to `v0.0.0-20230208100456-1d6e48ee78e5`
- `stretchr/testify` to `v1.8.2`
- NNS contract now uses 10 years for the default domain expiration (#296)
- contract documentation (#275, #317)

### Removed
- Support for non-notary settings (#303)
- `updateInnerRing` of the Netmap contract (#303)

### Fixed
- Migration of contracts to previous versions (#324)
- Potential panic in container contract's `getContainerSize` (#321)

### Updating from v0.16.0
When updating a non-notary installation:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ ok github.com/nspcc-dev/neofs-contract/tests 0.462s
| v0.14.x | [v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0) |
| v0.15.x | [v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0), [v2.12.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.12.0) |
| v0.15.x | [v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0), [v2.12.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.12.0) |
| v0.16.x | [v2.14.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.14.0) |
| v0.16.x | [v2.14.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.14.0) | v0.17.x | [v2.14.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.14.0) |


# License
Expand Down
4 changes: 2 additions & 2 deletions common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const (
// These should be used in a group (so prevMinor can be equal to minor if there are
// any migration routines.
prevMajor = 0
prevMinor = 16
prevPatch = 0
prevMinor = 15
prevPatch = 4

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

Expand Down

0 comments on commit 8df64fe

Please sign in to comment.