Release v0.20.0 #116

Merged
fyrchik merged 2 commits from fyrchik/frostfs-contract:release-020 into master 2024-11-02 14:21:47 +00:00
6 changed files with 19 additions and 9 deletions

View file

@ -13,7 +13,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
go-version: '1.23'
- name: Run commit format checker
uses: https://git.frostfs.info/TrueCloudLab/dco-go@v3

View file

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go_versions: [ '1.21', '1.22' ]
go_versions: [ '1.22', '1.23' ]
fail-fast: false
steps:
- uses: actions/checkout@v3

View file

@ -8,7 +8,17 @@ Changelog for FrostFS Contract
### Removed
### Updated
### Fixed
### Updating from v0.18.0
## [0.20.0]
### Added
- Add `ListFullSubjects` method to the frostfsid RPC client (#107)
- Add `ListChainNames` method to the policy contract (#105)
- Add `DeleteRecord` method to the nns contract (#114)
- Emit notification on record changes in nns contract (#109)
### Updated
- neo-go to v0.106.3
## [0.18.0] - 2023-09-14 - Academy of Sciences Glacier

View file

@ -1 +1 @@
v0.19.1
v0.20.0

View file

@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const (
major = 0
minor = 19
patch = 1
minor = 20
patch = 0
// 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 = 18
prevPatch = 0
prevMinor = 19
prevPatch = 3
Version = major*1_000_000 + minor*1_000 + patch

2
go.mod
View file

@ -1,6 +1,6 @@
module git.frostfs.info/TrueCloudLab/frostfs-contract
go 1.20
go 1.22
require (
github.com/google/uuid v1.6.0