Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.12 #109

Merged
merged 2 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,29 @@

## [Unreleased](https://github.com/babylonlabs-io/babylon-contract/tree/HEAD)

[Full Changelog](https://github.com/babylonlabs-io/babylon-contract/compare/v0.11.0...HEAD)
[Full Changelog](https://github.com/babylonlabs-io/babylon-contract/compare/v0.12.0...HEAD)

## [v0.12.0](https://github.com/babylonlabs-io/babylon-contract/tree/v0.12.0) (2025-02-07)

[Full Changelog](https://github.com/babylonlabs-io/babylon-contract/compare/v0.11.0-rc.1...v0.12.0)

**Closed issues:**

- Native rewards distribution protocol [\#102](https://github.com/babylonlabs-io/babylon-contract/issues/102)
- Fix borken protobuf generation [\#101](https://github.com/babylonlabs-io/babylon-contract/issues/101)

**Merged pull requests:**

- F/sync protos [\#108](https://github.com/babylonlabs-io/babylon-contract/pull/108) ([maurolacy](https://github.com/maurolacy))
- F/rewards claiming babylon [\#106](https://github.com/babylonlabs-io/babylon-contract/pull/106) ([maurolacy](https://github.com/maurolacy))
- F/rewards distribution consumer [\#104](https://github.com/babylonlabs-io/babylon-contract/pull/104) ([maurolacy](https://github.com/maurolacy))
- feat: op consumer chain slashing \(2/2\) [\#98](https://github.com/babylonlabs-io/babylon-contract/pull/98) ([parketh](https://github.com/parketh))
- F/rewards distribution 2 [\#97](https://github.com/babylonlabs-io/babylon-contract/pull/97) ([maurolacy](https://github.com/maurolacy))
- F/rewards distribution send [\#96](https://github.com/babylonlabs-io/babylon-contract/pull/96) ([maurolacy](https://github.com/maurolacy))
- chore: use query\_grpc from cosmwasm\_std [\#93](https://github.com/babylonlabs-io/babylon-contract/pull/93) ([lesterli](https://github.com/lesterli))
- feat: op consumer chain slashing \(1/2\) [\#92](https://github.com/babylonlabs-io/babylon-contract/pull/92) ([parketh](https://github.com/parketh))
- Rm auto register 2 [\#89](https://github.com/babylonlabs-io/babylon-contract/pull/89) ([maurolacy](https://github.com/maurolacy))
- fix: bump contract and permissioned integration [\#87](https://github.com/babylonlabs-io/babylon-contract/pull/87) ([SebastianElvis](https://github.com/SebastianElvis))

## [v0.11.0](https://github.com/babylonlabs-io/babylon-contract/tree/v0.11.0) (2024-11-19)

Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "0.11.0"
version = "0.12.0"
license = "Apache-2.0"
repository = "https://github.com/babylonlabs-io/babylon-contract"
authors = ["Babylon Labs Ltd. <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion contracts/babylon/schema/babylon-contract.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "babylon-contract",
"contract_version": "0.11.0",
"contract_version": "0.12.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/btc-finality/schema/btc-finality.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "btc-finality",
"contract_version": "0.11.0",
"contract_version": "0.12.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
2 changes: 1 addition & 1 deletion contracts/btc-staking/schema/btc-staking.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "btc-staking",
"contract_version": "0.11.0",
"contract_version": "0.12.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"contract_name": "op-finality-gadget",
"contract_version": "0.11.0",
"contract_version": "0.12.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Loading