Skip to content

Commit

Permalink
chore(release): perform release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bot-anik committed May 22, 2024
1 parent fa6a726 commit a49c4d2
Show file tree
Hide file tree
Showing 91 changed files with 179 additions and 160 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# AXONE protocol changelog

## [8.0.0](https://github.com/axone-protocol/axoned/compare/v7.1.0...v8.0.0) (2024-05-22)


### ⚠ BREAKING CHANGES

* **renaming:** change denom name from uknow to uaxone

### Features

* **cli:** update narative of axone command description ([4ab2b38](https://github.com/axone-protocol/axoned/commit/4ab2b38bd1b868534d0e2856f8781c6421517b33))
* **logic:** introduce "limit" flag to command "ask" ([58b4c45](https://github.com/axone-protocol/axoned/commit/58b4c45855c21885e65292482fddfe55d91ebaa5))


### Code Refactoring

* **renaming:** change denom name from uknow to uaxone ([88b9c92](https://github.com/axone-protocol/axoned/commit/88b9c92c6cfb559470f8b6bace299d8272c05bc4))

# ØKP4 protocol changelog

## [7.1.0](https://github.com/axone-protocol/axoned/compare/v7.0.1...v7.1.0) (2024-04-02)
Expand Down
22 changes: 11 additions & 11 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,17 @@ 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/v7/app/wasm"
"github.com/axone-protocol/axoned/v7/docs"
logicmodule "github.com/axone-protocol/axoned/v7/x/logic"
logicfs "github.com/axone-protocol/axoned/v7/x/logic/fs"
logicmodulekeeper "github.com/axone-protocol/axoned/v7/x/logic/keeper"
logicmoduletypes "github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v7/x/mint"
mintkeeper "github.com/axone-protocol/axoned/v7/x/mint/keeper"
minttypes "github.com/axone-protocol/axoned/v7/x/mint/types"
"github.com/axone-protocol/axoned/v7/x/vesting"
vestingtypes "github.com/axone-protocol/axoned/v7/x/vesting/types"
axonewasm "github.com/axone-protocol/axoned/v8/app/wasm"
"github.com/axone-protocol/axoned/v8/docs"
logicmodule "github.com/axone-protocol/axoned/v8/x/logic"
logicfs "github.com/axone-protocol/axoned/v8/x/logic/fs"
logicmodulekeeper "github.com/axone-protocol/axoned/v8/x/logic/keeper"
logicmoduletypes "github.com/axone-protocol/axoned/v8/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/mint"
mintkeeper "github.com/axone-protocol/axoned/v8/x/mint/keeper"
minttypes "github.com/axone-protocol/axoned/v8/x/mint/types"
"github.com/axone-protocol/axoned/v8/x/vesting"
vestingtypes "github.com/axone-protocol/axoned/v8/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/v7/app/params"
"github.com/axone-protocol/axoned/v8/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/v7/app/upgrades/v7"
v7 "github.com/axone-protocol/axoned/v8/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/v7/x/logic/keeper"
logicwasm "github.com/axone-protocol/axoned/v7/x/logic/wasm"
logickeeper "github.com/axone-protocol/axoned/v8/x/logic/keeper"
logicwasm "github.com/axone-protocol/axoned/v8/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/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/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/v7/app"
"github.com/axone-protocol/axoned/v8/app"
)

func initSDKConfig() {
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 @@ -40,10 +40,10 @@ import (
"github.com/cosmos/cosmos-sdk/x/crisis"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"

"github.com/axone-protocol/axoned/v7/app"
appparams "github.com/axone-protocol/axoned/v7/app/params"
"github.com/axone-protocol/axoned/v7/client/credential"
axonekeys "github.com/axone-protocol/axoned/v7/client/keys"
"github.com/axone-protocol/axoned/v8/app"
appparams "github.com/axone-protocol/axoned/v8/app/params"
"github.com/axone-protocol/axoned/v8/client/credential"
axonekeys "github.com/axone-protocol/axoned/v8/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/v7/app"
"github.com/axone-protocol/axoned/v7/cmd/axoned/cmd"
"github.com/axone-protocol/axoned/v8/app"
"github.com/axone-protocol/axoned/v8/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/v7
module github.com/axone-protocol/axoned/v8

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/v7/cmd/axoned/cmd"
"github.com/axone-protocol/axoned/v8/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 @@
7.1.0
8.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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

func CmdQueryParams() *cobra.Command {
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/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/x/logic/util"
)

// FilteredFS is a wrapper around a fs.FS that filters out files that are not allowed to be read.
Expand Down
4 changes: 2 additions & 2 deletions x/logic/fs/filtered_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/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/x/logic/util"
)

func TestSourceFile(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion x/logic/fs/wasm.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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion x/logic/fs/wasm_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/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/x/logic/testutil"
)

func TestWasmHandler(t *testing.T) {
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/v7/x/logic/keeper"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/keeper"
"github.com/axone-protocol/axoned/v8/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 @@ -8,7 +8,7 @@ import (
"github.com/ichiban/prolog"
"github.com/ichiban/prolog/engine"

"github.com/axone-protocol/axoned/v7/x/logic/predicate"
"github.com/axone-protocol/axoned/v8/x/logic/predicate"
)

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

"github.com/axone-protocol/axoned/v7/x/logic"
logicfs "github.com/axone-protocol/axoned/v7/x/logic/fs"
"github.com/axone-protocol/axoned/v7/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic"
logicfs "github.com/axone-protocol/axoned/v8/x/logic/fs"
"github.com/axone-protocol/axoned/v8/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/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 @@ -9,9 +9,9 @@ import (

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

"github.com/axone-protocol/axoned/v7/x/logic/meter"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v7/x/logic/util"
"github.com/axone-protocol/axoned/v8/x/logic/meter"
"github.com/axone-protocol/axoned/v8/x/logic/types"
"github.com/axone-protocol/axoned/v8/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 @@ -21,10 +21,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/v7/x/logic"
"github.com/axone-protocol/axoned/v7/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic"
"github.com/axone-protocol/axoned/v8/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/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/v7/x/logic"
"github.com/axone-protocol/axoned/v7/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic"
"github.com/axone-protocol/axoned/v8/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/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 @@ -17,13 +17,13 @@ import (

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

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

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

"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

type FSProvider = func(ctx goctx.Context) fs.FS
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/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

type msgServer struct {
Expand Down
8 changes: 4 additions & 4 deletions x/logic/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,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/v7/x/logic"
"github.com/axone-protocol/axoned/v7/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic"
"github.com/axone-protocol/axoned/v8/x/logic/keeper"
logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

func TestUpdateParams(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion x/logic/keeper/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/axone-protocol/axoned/v7/x/logic/types"
"github.com/axone-protocol/axoned/v8/x/logic/types"
)

// GetParams get all parameters as types.Params.
Expand Down
2 changes: 1 addition & 1 deletion x/logic/meter/weighted_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

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

"github.com/axone-protocol/axoned/v7/x/logic/testutil"
"github.com/axone-protocol/axoned/v8/x/logic/testutil"
)

func TestMultiplyUint64Overflow(t *testing.T) {
Expand Down
Loading

0 comments on commit a49c4d2

Please sign in to comment.