Skip to content

Commit 02cf86f

Browse files
committed
chore(release): perform release 12.0.0
1 parent 8a6e571 commit 02cf86f

Some content is hidden

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

100 files changed

+201
-182
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+
## [12.0.0](https://github.com/axone-protocol/axoned/compare/v11.0.1...v12.0.0) (2025-07-06)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **ibc:** unplug IBC for now 🔌
9+
10+
### Features
11+
12+
* **app:** add MaxWasmSize parameter for configurable Wasm code limits ([caa0403](https://github.com/axone-protocol/axoned/commit/caa0403b192d7ed3e2742440e6985c335776c5c3))
13+
* **logic:** add base64_encoded/3 precicate ([d1a75ee](https://github.com/axone-protocol/axoned/commit/d1a75eea1197a40cb7ae55d73799d1ba8f4b4419))
14+
* **logic:** add base64/2 predicate ([7e55d19](https://github.com/axone-protocol/axoned/commit/7e55d1942bb5db1da8152dde6515166f8adc8e4b))
15+
* **logic:** add base64url/2 predicate ([3176ff7](https://github.com/axone-protocol/axoned/commit/3176ff7b2100e7007ddb31b9ce11c70f988075f0))
16+
17+
18+
### Code Refactoring
19+
20+
* **ibc:** unplug IBC for now 🔌 ([324685f](https://github.com/axone-protocol/axoned/commit/324685f9c6962d5f66799f4df751b29e99360675))
21+
322
## [11.0.1](https://github.com/axone-protocol/axoned/compare/v11.0.0...v11.0.1) (2024-12-18)
423

524
### Build

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
[![build](https://img.shields.io/github/actions/workflow/status/axone-protocol/axoned/build.yml?label=build&style=for-the-badge&logo=github)](https://github.com/axone-protocol/axoned/actions/workflows/build.yml)
1515
[![test](https://img.shields.io/github/actions/workflow/status/axone-protocol/axoned/test.yml?label=test&style=for-the-badge&logo=github)](https://github.com/axone-protocol/axoned/actions/workflows/test.yml)
1616
[![codecov](https://img.shields.io/codecov/c/github/axone-protocol/axoned?style=for-the-badge&token=O3FJO5QDCA&logo=codecov)](https://codecov.io/gh/axone-protocol/axoned)
17-
[![Go Report Card](https://goreportcard.com/badge/github.com/axone-protocol/axoned/v11?style=for-the-badge)](https://goreportcard.com/report/github.com/axone-protocol/axoned/v11)
17+
[![Go Report Card](https://goreportcard.com/badge/github.com/axone-protocol/axoned/v12?style=for-the-badge)](https://goreportcard.com/report/github.com/axone-protocol/axoned/v12)
1818
[![docker-pull](https://img.shields.io/docker/pulls/axoneprotocol/axoned?label=downloads&style=for-the-badge&logo=docker)](https://hub.docker.com/r/axoneprotocol/axoned)
19-
[![Godoc Reference](https://img.shields.io/badge/godoc-reference-blue.svg?logo=go&logoColor=white&labelColor=gray&label=&style=for-the-badge)](https://pkg.go.dev/github.com/axone-protocol/axoned/v11)
19+
[![Godoc Reference](https://img.shields.io/badge/godoc-reference-blue.svg?logo=go&logoColor=white&labelColor=gray&label=&style=for-the-badge)](https://pkg.go.dev/github.com/axone-protocol/axoned/v12)
2020

2121
[![conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=for-the-badge&logo=conventionalcommits)](https://conventionalcommits.org)
2222
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge)](https://github.com/semantic-release/semantic-release)

app/app.go

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

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

152152
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/v11/app/params"
12+
"github.com/axone-protocol/axoned/v12/app/params"
1313
)
1414

1515
// makeEncodingConfig creates an EncodingConfig test configuration.

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/v11/x/logic/keeper"
15-
logicwasm "github.com/axone-protocol/axoned/v11/x/logic/wasm"
14+
logickeeper "github.com/axone-protocol/axoned/v12/x/logic/keeper"
15+
logicwasm "github.com/axone-protocol/axoned/v12/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/v11/x/logic/util"
32+
"github.com/axone-protocol/axoned/v12/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/v11/x/logic/util"
15+
"github.com/axone-protocol/axoned/v12/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/v11/x/logic/util"
14+
"github.com/axone-protocol/axoned/v12/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/v11/app"
6+
"github.com/axone-protocol/axoned/v12/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/v11/x/vesting/types"
17+
vestingtypes "github.com/axone-protocol/axoned/v12/x/vesting/types"
1818
)
1919

2020
const (

0 commit comments

Comments
 (0)