Skip to content

Commit 94764ea

Browse files
authored
Release 0.18.0 (#363)
2 parents 86765df + 96101e5 commit 94764ea

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,39 @@ Changelog for NeoFS Contract
33

44
## [Unreleased]
55

6+
### Added
7+
8+
### Updated
9+
10+
### Removed
11+
12+
### Fixed
13+
14+
### Updating from v0.18.0
15+
16+
## [0.18.0] - 2023-09-26
17+
618
### Added
719
- EACL validation in container.setEACL (#330)
820
- Contract storage model documentation (#320)
9-
- bump minimum required go version up to 1.18 (#346)
10-
- ability to register predefined TLDs at NNS deployment (#344)
21+
- Bump minimum required go version up to 1.18 (#346)
22+
- Ability to register predefined TLDs at NNS deployment (#344)
1123
- RPC bindings generation (#345)
24+
- Method to get container name by its ID (#360)
25+
- Convenience methods for NNS contract (#361)
1226

1327
### Updated
1428
- NNS TLD registration is possible for committee only now (#344, #357)
1529
- NNS TLDs are no longer proper NFTs (#344)
1630

1731
### Removed
18-
- old unused (notary-disabled) events (#341)
32+
- Old unused (notary-disabled) events (#341)
33+
- Unused Burn/Mint balance contract events (#358)
1934

2035
### Fixed
21-
- migration of non-notary network to notarized one with stale votes (#333)
36+
- Migration of non-notary network to notarized one with stale votes (#333)
2237
- nns.getAllRecords missing 'safe' mark (#355)
23-
24-
### Updating from v0.17.0
38+
- Stale EACL record left after container deletion (#359)
2539

2640
## [0.17.0] - 2023-04-06
2741

@@ -448,7 +462,8 @@ Preview4-testnet version of NeoFS contracts.
448462

449463
Preview4 compatible contracts.
450464

451-
[Unreleased]: https://github.com/nspcc-dev/neofs-contract/compare/v0.17.0...master
465+
[Unreleased]: https://github.com/nspcc-dev/neofs-contract/compare/v0.18.0...master
466+
[0.18.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.17.0...v0.18.0
452467
[0.17.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.16.0...v0.17.0
453468
[0.16.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.15.5...v0.16.0
454469
[0.15.5]: https://github.com/nspcc-dev/neofs-contract/compare/v0.15.4...v0.15.5

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.17.5
1+
v0.18.0

common/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
44

55
const (
66
major = 0
7-
minor = 17
8-
patch = 5
7+
minor = 18
8+
patch = 0
99

1010
// Versions from which an update should be performed.
1111
// These should be used in a group (so prevMinor can be equal to minor if there are

0 commit comments

Comments
 (0)