Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-spider[bot] authored Nov 1, 2024
1 parent 22ba9cc commit 9750e79
Show file tree
Hide file tree
Showing 13 changed files with 86 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ single_match_else = "allow"
broken_intra_doc_links = "deny"

[workspace.dependencies]
gadget-io = { version = "0.0.4", path = "./gadget-io", default-features = false }
gadget-io = { version = "0.0.5", path = "./gadget-io", default-features = false }
blueprint-manager = { version = "0.1.1", path = "./blueprint-manager" }
blueprint-test-utils = { path = "./blueprint-test-utils" }
gadget-sdk = { path = "./sdk", default-features = false, version = "0.2.3" }
gadget-sdk = { path = "./sdk", default-features = false, version = "0.3.0" }

incredible-squaring-blueprint = { path = "./blueprints/incredible-squaring", default-features = false, version = "0.1.1" }
incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squaring-eigenlayer", default-features = false, version = "0.1.1" }
incredible-squaring-blueprint-symbiotic = { path = "./blueprints/incredible-squaring-symbiotic", default-features = false, version = "0.1.1" }
periodic-web-poller-blueprint = { path = "./blueprints/periodic-web-poller", default-features = false, version = "0.1.1" }
tangle-raw-event-listener-blueprint = { path = "./blueprints/tangle-raw-event-listener", default-features = false, version = "0.1.1" }
gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.3" }
gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.4" }
gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.5" }
gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.3" }
gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.2.0" }
blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.6" }
cargo-tangle = { path = "./cli", version = "0.2.1" }
cargo-tangle = { path = "./cli", version = "0.2.2" }
cargo_metadata = { version = "0.18.1" }

# Tangle-related dependencies
Expand Down
2 changes: 1 addition & 1 deletion blueprints/tangle-raw-event-listener/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ blueprint-metadata = { workspace = true }

[features]
default = ["std"]
std = []
std = []
14 changes: 14 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.1...cargo-tangle-v0.2.2) - 2024-11-01

### Added

- *(gadget-sdk)* add TxProgressExt trait ([#425](https://github.com/tangle-network/gadget/pull/425))

### Fixed

- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409))

### Other

- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399))

## [0.2.1](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.0...cargo-tangle-v0.2.1) - 2024-10-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-tangle"
version = "0.2.1"
version = "0.2.2"
description = "A command-line tool to create and deploy blueprints on Tangle Network"
authors.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions gadget-io/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.5](https://github.com/tangle-network/gadget/compare/gadget-io-v0.0.4...gadget-io-v0.0.5) - 2024-11-01

### Fixed

- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409))

## [0.0.4](https://github.com/tangle-network/gadget/compare/gadget-io-v0.0.3...gadget-io-v0.0.4) - 2024-10-25

### Other
Expand Down
2 changes: 1 addition & 1 deletion gadget-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-io"
version = "0.0.4"
version = "0.0.5"
license.workspace = true
edition = "2021"
description = "Tangle's gadget IO library for writing Tangle blueprints"
Expand Down
16 changes: 16 additions & 0 deletions macros/blueprint-proc-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.3...gadget-blueprint-proc-macro-v0.2.4) - 2024-11-01

### Added

- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411))

### Fixed

- *(gadget-sdk)* update sdk and utilities for tangle avs ([#355](https://github.com/tangle-network/gadget/pull/355))
- *(blueprint-proc-macro)* resolve dependency cycle with gadget-sdk
- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409))

### Other

- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399))

## [0.2.3](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.2...gadget-blueprint-proc-macro-v0.2.3) - 2024-10-25

### Other
Expand Down
2 changes: 1 addition & 1 deletion macros/blueprint-proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-blueprint-proc-macro"
version = "0.2.3"
version = "0.2.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions macros/context-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.3...gadget-context-derive-v0.2.0) - 2024-11-01

### Added

- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411))

### Fixed

- *(sdk)* [**breaking**] allow for zero-based `blueprint_id` ([#426](https://github.com/tangle-network/gadget/pull/426))

### Other

- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399))
- improve blueprint-manager and blueprint-test-utils ([#421](https://github.com/tangle-network/gadget/pull/421))

## [0.1.3](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.2...gadget-context-derive-v0.1.3) - 2024-10-25

### Other
Expand Down
2 changes: 1 addition & 1 deletion macros/context-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-context-derive"
version = "0.1.3"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.3...gadget-sdk-v0.3.0) - 2024-11-01

### Added

- *(gadget-sdk)* add TxProgressExt trait ([#425](https://github.com/tangle-network/gadget/pull/425))
- feat!(gadget-sdk): add an Error type for executor module ([#420](https://github.com/tangle-network/gadget/pull/420))
- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411))

### Fixed

- *(gadget-sdk)* update sdk and utilities for tangle avs ([#355](https://github.com/tangle-network/gadget/pull/355))
- *(gadget-sdk)* Return `Bytes` when using `Vec<u8>` in params and result ([#428](https://github.com/tangle-network/gadget/pull/428))
- *(sdk)* [**breaking**] allow for zero-based `blueprint_id` ([#426](https://github.com/tangle-network/gadget/pull/426))
- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409))

### Other

- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399))

## [0.2.3](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.2...gadget-sdk-v0.2.3) - 2024-10-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-sdk"
version = "0.2.3"
version = "0.3.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down

0 comments on commit 9750e79

Please sign in to comment.