Skip to content

Commit

Permalink
chore(release): perform release 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bot-anik committed Aug 29, 2024
1 parent 0dd9962 commit 2f0f84d
Show file tree
Hide file tree
Showing 93 changed files with 185 additions and 166 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# AXONE protocol changelog

## [10.0.0](https://github.com/axone-protocol/axoned/compare/v9.0.0...v10.0.0) (2024-08-29)


### ⚠ BREAKING CHANGES

* **deps:** bump docker image wasmvm
* **deps:** bump wasmd to v0.53.0

### Features

* **credential:** allow choose proof purpose when signing ([b30ff57](https://github.com/axone-protocol/axoned/commit/b30ff57c5791b2cbdd41f141b1d631fa5a7905b3))


### Bug Fixes

* **credential:** correctly wraps error on parsing arg ([643dab4](https://github.com/axone-protocol/axoned/commit/643dab4ed6cdf8bc53ca2e2754ca74f39acfda25))
* **deps:** bump docker image wasmvm ([3fb333c](https://github.com/axone-protocol/axoned/commit/3fb333cc89834da0cc8932edd5670460b14e15de))
* **deps:** bump wasmd to v0.53.0 ([1283233](https://github.com/axone-protocol/axoned/commit/1283233eb6e02300b775275b0c2c38f2d18c7bc8))

## [9.0.0](https://github.com/axone-protocol/axoned/compare/v8.0.0...v9.0.0) (2024-08-02)


Expand Down
24 changes: 12 additions & 12 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,18 @@ import (
ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper"
ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"

axonewasm "github.com/axone-protocol/axoned/v9/app/wasm"
"github.com/axone-protocol/axoned/v9/docs"
logicmodule "github.com/axone-protocol/axoned/v9/x/logic"
"github.com/axone-protocol/axoned/v9/x/logic/fs/composite"
wasm2 "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm"
logicmodulekeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper"
logicmoduletypes "github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v9/x/mint"
mintkeeper "github.com/axone-protocol/axoned/v9/x/mint/keeper"
minttypes "github.com/axone-protocol/axoned/v9/x/mint/types"
"github.com/axone-protocol/axoned/v9/x/vesting"
vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types"
axonewasm "github.com/axone-protocol/axoned/v10/app/wasm"
"github.com/axone-protocol/axoned/v10/docs"
logicmodule "github.com/axone-protocol/axoned/v10/x/logic"
"github.com/axone-protocol/axoned/v10/x/logic/fs/composite"
wasm2 "github.com/axone-protocol/axoned/v10/x/logic/fs/wasm"
logicmodulekeeper "github.com/axone-protocol/axoned/v10/x/logic/keeper"
logicmoduletypes "github.com/axone-protocol/axoned/v10/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/mint"
mintkeeper "github.com/axone-protocol/axoned/v10/x/mint/keeper"
minttypes "github.com/axone-protocol/axoned/v10/x/mint/types"
"github.com/axone-protocol/axoned/v10/x/vesting"
vestingtypes "github.com/axone-protocol/axoned/v10/x/vesting/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

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

"github.com/axone-protocol/axoned/v9/app/params"
"github.com/axone-protocol/axoned/v10/app/params"
)

// makeEncodingConfig creates an EncodingConfig test configuration.
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package app
import (
"fmt"

v7 "github.com/axone-protocol/axoned/v9/app/upgrades/v7"
v7 "github.com/axone-protocol/axoned/v10/app/upgrades/v7"
)

// RegisterUpgradeHandlers registers the chain upgrade handlers.
Expand Down
4 changes: 2 additions & 2 deletions app/wasm/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"

logickeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper"
logicwasm "github.com/axone-protocol/axoned/v9/x/logic/wasm"
logickeeper "github.com/axone-protocol/axoned/v10/x/logic/keeper"
logicwasm "github.com/axone-protocol/axoned/v10/x/logic/wasm"
)

// customQuery represents the wasm custom query structure, it is intended to allow wasm contracts to execute queries
Expand Down
2 changes: 1 addition & 1 deletion client/credential/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
sdkerr "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/types/tx/signing"

"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion client/keys/did.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/version"

"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

var flagPubKeyType = "type"
Expand Down
2 changes: 1 addition & 1 deletion client/keys/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/keys"
cryptokeyring "github.com/cosmos/cosmos-sdk/crypto/keyring"

"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

// KeyOutput is the output format for keys when listing them.
Expand Down
2 changes: 1 addition & 1 deletion cmd/axoned/cmd/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/app"
"github.com/axone-protocol/axoned/v10/app"
)

func initSDKConfig() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/axoned/cmd/genaccount.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/cosmos/cosmos-sdk/server"
sdk "github.com/cosmos/cosmos-sdk/types"

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

const (
Expand Down
8 changes: 4 additions & 4 deletions cmd/axoned/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ import (
"github.com/cosmos/cosmos-sdk/x/crisis"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"

"github.com/axone-protocol/axoned/v9/app"
appparams "github.com/axone-protocol/axoned/v9/app/params"
"github.com/axone-protocol/axoned/v9/client/credential"
axonekeys "github.com/axone-protocol/axoned/v9/client/keys"
"github.com/axone-protocol/axoned/v10/app"
appparams "github.com/axone-protocol/axoned/v10/app/params"
"github.com/axone-protocol/axoned/v10/client/credential"
axonekeys "github.com/axone-protocol/axoned/v10/client/keys"
)

// NewRootCmd creates a new root command for a Cosmos SDK application.
Expand Down
4 changes: 2 additions & 2 deletions cmd/axoned/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/axone-protocol/axoned/v9/app"
"github.com/axone-protocol/axoned/v9/cmd/axoned/cmd"
"github.com/axone-protocol/axoned/v10/app"
"github.com/axone-protocol/axoned/v10/cmd/axoned/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/axone-protocol/axoned/v9
module github.com/axone-protocol/axoned/v10

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_command_doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra/doc"

"github.com/axone-protocol/axoned/v9/cmd/axoned/cmd"
"github.com/axone-protocol/axoned/v10/cmd/axoned/cmd"
)

func generateCommandDocumentation() error {
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
10.0.0
2 changes: 1 addition & 1 deletion x/logic/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/cosmos/cosmos-sdk/client"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

// GetQueryCmd returns the cli query commands for this module.
Expand Down
2 changes: 1 addition & 1 deletion x/logic/client/cli/query_ask.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/version"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion x/logic/client/cli/query_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

func CmdQueryParams() *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions x/logic/fs/composite/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (

. "github.com/smartystreets/goconvey/convey"

"github.com/axone-protocol/axoned/v9/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v10/x/logic/testutil"
)

type fileSpec struct {
Expand Down
2 changes: 1 addition & 1 deletion x/logic/fs/filtered/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io/fs"
"net/url"

"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

type vfs struct {
Expand Down
6 changes: 3 additions & 3 deletions x/logic/fs/filtered/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (

. "github.com/smartystreets/goconvey/convey"

"github.com/axone-protocol/axoned/v9/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v10/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

func TestFilteredVFS(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion x/logic/fs/wasm/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion x/logic/fs/wasm/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/testutil"
)

//nolint:gocognit
Expand Down
4 changes: 2 additions & 2 deletions x/logic/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/keeper"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/keeper"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

// InitGenesis initializes the module's state from a provided genesis state.
Expand Down
2 changes: 1 addition & 1 deletion x/logic/interpreter/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/ichiban/prolog/engine"
orderedmap "github.com/wk8/go-ordered-map/v2"

"github.com/axone-protocol/axoned/v9/x/logic/predicate"
"github.com/axone-protocol/axoned/v10/x/logic/predicate"
)

// registry is a map from predicate names (in the form of "atom/arity") to predicates functions.
Expand Down
12 changes: 6 additions & 6 deletions x/logic/keeper/features_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

"github.com/axone-protocol/axoned/v9/x/logic"
"github.com/axone-protocol/axoned/v9/x/logic/fs/composite"
"github.com/axone-protocol/axoned/v9/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v9/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic"
"github.com/axone-protocol/axoned/v10/x/logic/fs/composite"
"github.com/axone-protocol/axoned/v10/x/logic/fs/wasm"
"github.com/axone-protocol/axoned/v10/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v10/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

var key = storetypes.NewKVStoreKey(types.StoreKey)
Expand Down
2 changes: 1 addition & 1 deletion x/logic/keeper/grpc_query.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package keeper

import (
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

var _ types.QueryServiceServer = Keeper{}
6 changes: 3 additions & 3 deletions x/logic/keeper/grpc_query_ask.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/meter"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/meter"
"github.com/axone-protocol/axoned/v10/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

var defaultSolutionsLimit = sdkmath.OneUint()
Expand Down
8 changes: 4 additions & 4 deletions x/logic/keeper/grpc_query_ask_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
bankypes "github.com/cosmos/cosmos-sdk/x/bank/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

"github.com/axone-protocol/axoned/v9/x/logic"
"github.com/axone-protocol/axoned/v9/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic"
"github.com/axone-protocol/axoned/v10/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v10/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

func TestGRPCAsk(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion x/logic/keeper/grpc_query_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

func (k Keeper) Params(c context.Context, req *types.QueryServiceParamsRequest) (*types.QueryServiceParamsResponse, error) {
Expand Down
8 changes: 4 additions & 4 deletions x/logic/keeper/grpc_query_params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

"github.com/axone-protocol/axoned/v9/x/logic"
"github.com/axone-protocol/axoned/v9/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic"
"github.com/axone-protocol/axoned/v10/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v10/x/logic/testutil"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

func TestGRPCParams(t *testing.T) {
Expand Down
14 changes: 7 additions & 7 deletions x/logic/keeper/interpreter.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ import (

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/fs/filtered"
"github.com/axone-protocol/axoned/v9/x/logic/interpreter"
"github.com/axone-protocol/axoned/v9/x/logic/interpreter/bootstrap"
"github.com/axone-protocol/axoned/v9/x/logic/meter"
prolog2 "github.com/axone-protocol/axoned/v9/x/logic/prolog"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v9/x/logic/util"
"github.com/axone-protocol/axoned/v10/x/logic/fs/filtered"
"github.com/axone-protocol/axoned/v10/x/logic/interpreter"
"github.com/axone-protocol/axoned/v10/x/logic/interpreter/bootstrap"
"github.com/axone-protocol/axoned/v10/x/logic/meter"
prolog2 "github.com/axone-protocol/axoned/v10/x/logic/prolog"
"github.com/axone-protocol/axoned/v10/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/util"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions x/logic/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v9/x/logic/fs"
"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/fs"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion x/logic/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

"github.com/axone-protocol/axoned/v9/x/logic/types"
"github.com/axone-protocol/axoned/v10/x/logic/types"
)

type msgServer struct {
Expand Down
Loading

0 comments on commit 2f0f84d

Please sign in to comment.