Skip to content

Commit 2f0f84d

Browse files
committed
chore(release): perform release 10.0.0
1 parent 0dd9962 commit 2f0f84d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+185
-166
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# AXONE protocol changelog
22

3+
## [10.0.0](https://github.com/axone-protocol/axoned/compare/v9.0.0...v10.0.0) (2024-08-29)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **deps:** bump docker image wasmvm
9+
* **deps:** bump wasmd to v0.53.0
10+
11+
### Features
12+
13+
* **credential:** allow choose proof purpose when signing ([b30ff57](https://github.com/axone-protocol/axoned/commit/b30ff57c5791b2cbdd41f141b1d631fa5a7905b3))
14+
15+
16+
### Bug Fixes
17+
18+
* **credential:** correctly wraps error on parsing arg ([643dab4](https://github.com/axone-protocol/axoned/commit/643dab4ed6cdf8bc53ca2e2754ca74f39acfda25))
19+
* **deps:** bump docker image wasmvm ([3fb333c](https://github.com/axone-protocol/axoned/commit/3fb333cc89834da0cc8932edd5670460b14e15de))
20+
* **deps:** bump wasmd to v0.53.0 ([1283233](https://github.com/axone-protocol/axoned/commit/1283233eb6e02300b775275b0c2c38f2d18c7bc8))
21+
322
## [9.0.0](https://github.com/axone-protocol/axoned/compare/v8.0.0...v9.0.0) (2024-08-02)
423

524

app/app.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,18 +134,18 @@ import (
134134
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
135135
ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"
136136

137-
axonewasm "github.com/axone-protocol/axoned/v9/app/wasm"
138-
"github.com/axone-protocol/axoned/v9/docs"
139-
logicmodule "github.com/axone-protocol/axoned/v9/x/logic"
140-
"github.com/axone-protocol/axoned/v9/x/logic/fs/composite"
141-
wasm2 "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm"
142-
logicmodulekeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper"
143-
logicmoduletypes "github.com/axone-protocol/axoned/v9/x/logic/types"
144-
"github.com/axone-protocol/axoned/v9/x/mint"
145-
mintkeeper "github.com/axone-protocol/axoned/v9/x/mint/keeper"
146-
minttypes "github.com/axone-protocol/axoned/v9/x/mint/types"
147-
"github.com/axone-protocol/axoned/v9/x/vesting"
148-
vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types"
137+
axonewasm "github.com/axone-protocol/axoned/v10/app/wasm"
138+
"github.com/axone-protocol/axoned/v10/docs"
139+
logicmodule "github.com/axone-protocol/axoned/v10/x/logic"
140+
"github.com/axone-protocol/axoned/v10/x/logic/fs/composite"
141+
wasm2 "github.com/axone-protocol/axoned/v10/x/logic/fs/wasm"
142+
logicmodulekeeper "github.com/axone-protocol/axoned/v10/x/logic/keeper"
143+
logicmoduletypes "github.com/axone-protocol/axoned/v10/x/logic/types"
144+
"github.com/axone-protocol/axoned/v10/x/mint"
145+
mintkeeper "github.com/axone-protocol/axoned/v10/x/mint/keeper"
146+
minttypes "github.com/axone-protocol/axoned/v10/x/mint/types"
147+
"github.com/axone-protocol/axoned/v10/x/vesting"
148+
vestingtypes "github.com/axone-protocol/axoned/v10/x/vesting/types"
149149
)
150150

151151
const (

app/encoding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
1111

12-
"github.com/axone-protocol/axoned/v9/app/params"
12+
"github.com/axone-protocol/axoned/v10/app/params"
1313
)
1414

1515
// makeEncodingConfig creates an EncodingConfig test configuration.

app/upgrades.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package app
33
import (
44
"fmt"
55

6-
v7 "github.com/axone-protocol/axoned/v9/app/upgrades/v7"
6+
v7 "github.com/axone-protocol/axoned/v10/app/upgrades/v7"
77
)
88

99
// RegisterUpgradeHandlers registers the chain upgrade handlers.

app/wasm/query.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
sdk "github.com/cosmos/cosmos-sdk/types"
1212
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
1313

14-
logickeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper"
15-
logicwasm "github.com/axone-protocol/axoned/v9/x/logic/wasm"
14+
logickeeper "github.com/axone-protocol/axoned/v10/x/logic/keeper"
15+
logicwasm "github.com/axone-protocol/axoned/v10/x/logic/wasm"
1616
)
1717

1818
// customQuery represents the wasm custom query structure, it is intended to allow wasm contracts to execute queries

client/credential/sign.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
sdkerr "github.com/cosmos/cosmos-sdk/types/errors"
3030
"github.com/cosmos/cosmos-sdk/types/tx/signing"
3131

32-
"github.com/axone-protocol/axoned/v9/x/logic/util"
32+
"github.com/axone-protocol/axoned/v10/x/logic/util"
3333
)
3434

3535
const (

client/keys/did.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/cosmos/cosmos-sdk/types/errors"
1313
"github.com/cosmos/cosmos-sdk/version"
1414

15-
"github.com/axone-protocol/axoned/v9/x/logic/util"
15+
"github.com/axone-protocol/axoned/v10/x/logic/util"
1616
)
1717

1818
var flagPubKeyType = "type"

client/keys/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/cosmos/cosmos-sdk/client/keys"
1212
cryptokeyring "github.com/cosmos/cosmos-sdk/crypto/keyring"
1313

14-
"github.com/axone-protocol/axoned/v9/x/logic/util"
14+
"github.com/axone-protocol/axoned/v10/x/logic/util"
1515
)
1616

1717
// KeyOutput is the output format for keys when listing them.

cmd/axoned/cmd/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
sdk "github.com/cosmos/cosmos-sdk/types"
55

6-
"github.com/axone-protocol/axoned/v9/app"
6+
"github.com/axone-protocol/axoned/v10/app"
77
)
88

99
func initSDKConfig() {

cmd/axoned/cmd/genaccount.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/cosmos/cosmos-sdk/server"
1515
sdk "github.com/cosmos/cosmos-sdk/types"
1616

17-
vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types"
17+
vestingtypes "github.com/axone-protocol/axoned/v10/x/vesting/types"
1818
)
1919

2020
const (

0 commit comments

Comments
 (0)