Skip to content

Commit

Permalink
chore: release (#387)
Browse files Browse the repository at this point in the history
Co-authored-by: webb-spider[bot] <182531479+webb-spider[bot]@users.noreply.github.com>
Co-authored-by: Shady Khalifa <dev+github@shadykhalifa.me>
  • Loading branch information
webb-spider[bot] and shekohex authored Oct 24, 2024
1 parent bb80edb commit 9d8b9b6
Show file tree
Hide file tree
Showing 19 changed files with 67 additions and 24 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ broken_intra_doc_links = "deny"
gadget-io = { version = "0.0.3", 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.0" }
gadget-sdk = { path = "./sdk", default-features = false, version = "0.2.1" }

incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squaring-eigenlayer", default-features = false, version = "0.1.1" }
incredible-squaring-aggregator = { path = "./blueprints/incredible-squaring-eigenlayer/aggregator", default-features = false, version = "0.1.1" }
periodic-web-poller-blueprint = { path = "./blueprints/periodic-web-poller", default-features = false, version = "0.1.1" }
gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.0" }
gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.3" }
gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.1" }
blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.4" }
cargo-tangle = { path = "./cli", version = "0.1.3" }
gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.1" }
gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.4" }
gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.2" }
blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.5" }
cargo-tangle = { path = "./cli", version = "0.2.0" }
cargo_metadata = { version = "0.18.1" }

# Tangle-related dependencies
Expand Down
6 changes: 6 additions & 0 deletions blueprint-metadata/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.1.5](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.4...blueprint-metadata-v0.1.5) - 2024-10-24

### Other

- updated the following local packages: gadget-blueprint-proc-macro-core

## [0.1.3](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.2...blueprint-metadata-v0.1.3) - 2024-10-23

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion blueprint-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blueprint-metadata"
version = "0.1.4"
version = "0.1.5"
description = "A build dependency for generating metadata for Blueprint at compile time."
authors.workspace = true
edition.workspace = true
Expand Down
Submodule forge-std updated 4 files
+193 −0 CONTRIBUTING.md
+16 −0 README.md
+73 −8 src/Vm.sol
+2 −2 test/Vm.t.sol
2 changes: 1 addition & 1 deletion blueprints/incredible-squaring/contracts/lib/forge-std
Submodule forge-std updated 4 files
+193 −0 CONTRIBUTING.md
+16 −0 README.md
+73 −8 src/Vm.sol
+2 −2 test/Vm.t.sol
10 changes: 10 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ 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/cargo-tangle-v0.1.3...cargo-tangle-v0.2.0) - 2024-10-24

### Added

- *(cargo-tangle)* [**breaking**] rename "gadget" to "blueprint" ([#384](https://github.com/tangle-network/gadget/pull/384))

### Other

- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363))

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

### 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.1.3"
version = "0.2.0"
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 macros/blueprint-proc-macro-core/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.1.4](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.1.3...gadget-blueprint-proc-macro-core-v0.1.4) - 2024-10-24

### Other

- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363))

## [0.1.3](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.1.2...gadget-blueprint-proc-macro-core-v0.1.3) - 2024-10-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion macros/blueprint-proc-macro-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-blueprint-proc-macro-core"
version = "0.1.3"
version = "0.1.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions macros/blueprint-proc-macro/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.2.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.0...gadget-blueprint-proc-macro-v0.2.1) - 2024-10-24

### Other

- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363))

## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.1.2...gadget-blueprint-proc-macro-v0.2.0) - 2024-10-23

### Added
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.0"
version = "0.2.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions macros/context-derive/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.1.2](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.1...gadget-context-derive-v0.1.2) - 2024-10-24

### Other

- updated the following local packages: gadget-sdk

## [0.1.1](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.0...gadget-context-derive-v0.1.1) - 2024-09-30

### Added
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.1"
version = "0.1.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion macros/playground/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ serde_json = { workspace = true }
tokio = { workspace = true }

[build-dependencies]
blueprint-metadata = { workspace = true }
blueprint-metadata = { workspace = true }
3 changes: 1 addition & 2 deletions macros/playground/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,7 @@ mod tests {

let task0 = async move {
MultiJobRunner::new(None)
.with_job()
.finish(job)
.job(job)
.run()
.await
.expect("Job failed");
Expand Down
10 changes: 10 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Added

- *(gadget-sdk)* improve `MultiJobRunner` builder ([#382](https://github.com/tangle-network/gadget/pull/382))

### Other

- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363))

## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.1.1...gadget-sdk-v0.2.0) - 2024-10-23

### 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.0"
version = "0.2.1"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down

0 comments on commit 9d8b9b6

Please sign in to comment.