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 Jan 28, 2025
1 parent 765b3e5 commit 4e43b50
Show file tree
Hide file tree
Showing 101 changed files with 1,025 additions and 55 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 @@ -39,10 +39,10 @@ incredible-squaring-blueprint-eigenlayer = { version = "0.1.1", path = "./bluepr

# Blueprint utils
blueprint-util-meta = { version = "0.1.0", path = "./crates/blueprint", default-features = false }
blueprint-manager = { version = "0.2.2", path = "./crates/blueprint/manager", default-features = false }
blueprint-metadata = { version = "0.2.1", path = "./crates/blueprint/metadata", default-features = false }
blueprint-manager = { version = "0.2.3", path = "./crates/blueprint/manager", default-features = false }
blueprint-metadata = { version = "0.2.2", path = "./crates/blueprint/metadata", default-features = false }
blueprint-build-utils = { version = "0.1.0", path = "./crates/blueprint/build-utils", default-features = false }
gadget-blueprint-serde = { version = "0.3.1", path = "./crates/blueprint/serde", default-features = false }
gadget-blueprint-serde = { version = "0.3.2", path = "./crates/blueprint/serde", default-features = false }

# Crypto
gadget-crypto-core = { version = "0.1.0", path = "./crates/crypto/core", default-features = false }
Expand Down Expand Up @@ -77,10 +77,10 @@ gadget-executor = { version = "0.1.0", path = "./crates/executor", default-featu

# Macros
gadget-macros = { version = "0.1.0", path = "./crates/macros", default-features = false }
gadget-blueprint-proc-macro-core = { version = "0.3.1", path = "./crates/macros/core", default-features = false }
gadget-blueprint-proc-macro = { version = "0.5.1", path = "./crates/macros/blueprint-proc-macro", default-features = false }
gadget-blueprint-proc-macro-core = { version = "0.3.2", path = "./crates/macros/core", default-features = false }
gadget-blueprint-proc-macro = { version = "0.5.2", path = "./crates/macros/blueprint-proc-macro", default-features = false }
gadget-blueprint-proc-macro-playground = { version = "0.1.1", path = "./crates/macros/playground", default-features = false }
gadget-context-derive = { version = "0.3.1", path = "./crates/macros/context-derive", default-features = false }
gadget-context-derive = { version = "0.3.2", path = "./crates/macros/context-derive", default-features = false }

# Stores
gadget-stores = { version = "0.1.0", path = "./crates/stores", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ evm = [
"alloy-network",
"alloy-rpc-types-eth",
"alloy-signer-local",
]
]
18 changes: 18 additions & 0 deletions crates/benchmarking/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-benchmarking-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/blueprint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ publish = false
[dependencies]
blueprint-manager.workspace = true
blueprint-metadata.workspace = true
blueprint-build-utils.workspace = true
blueprint-build-utils.workspace = true
18 changes: 18 additions & 0 deletions crates/blueprint/build-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/blueprint-build-utils-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/blueprint/build-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ repository.workspace = true
gadget-std = { workspace = true, features = ["std"] }

[lints]
workspace = true
workspace = true
10 changes: 10 additions & 0 deletions crates/blueprint/manager/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.3](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.2.2...blueprint-manager-v0.2.3) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))

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

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/blueprint/manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blueprint-manager"
version = "0.2.2"
version = "0.2.3"
description = "Tangle Blueprint manager and Runner"
authors.workspace = true
edition.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions crates/blueprint/metadata/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.2](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.2.1...blueprint-metadata-v0.2.2) - 2025-01-28

### Added

- *(blueprint-metadata)* nicer errors ([#621](https://github.com/tangle-network/gadget/pull/621))
- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/blueprint/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blueprint-metadata"
version = "0.2.1"
version = "0.2.2"
description = "A build dependency for generating metadata for Tangle Blueprints at compile time."
authors.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/blueprint/serde/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.3.2](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.3.1...gadget-blueprint-serde-v0.3.2) - 2025-01-28

### Added

- gadget workspace migration

## [0.3.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.3.0...gadget-blueprint-serde-v0.3.1) - 2024-12-11

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/blueprint/serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gadget-blueprint-serde"
version = "0.3.1"
version = "0.3.2"
description = "Tangle Blueprints serde integration"
authors.workspace = true
edition.workspace = true
Expand Down
18 changes: 18 additions & 0 deletions crates/clients/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-clients-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ web = ["gadget-client-tangle?/web"]
eigenlayer = ["dep:gadget-client-eigenlayer"]
evm = ["dep:gadget-client-evm"]
networking = ["dep:gadget-client-networking"]
tangle = ["dep:gadget-client-tangle"]
tangle = ["dep:gadget-client-tangle"]
18 changes: 18 additions & 0 deletions crates/clients/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-client-core-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ thiserror = { workspace = true }
default = ["std"]
std = [
"gadget-std/std",
]
]
18 changes: 18 additions & 0 deletions crates/clients/eigenlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-client-eigenlayer-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/eigenlayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ std = [
"gadget-utils-evm/std",
"tokio/full",
# TODO: "url/std",
]
]
18 changes: 18 additions & 0 deletions crates/clients/evm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-client-evm-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ std = [

# Alloy features
"alloy-primitives/std",
]
]
18 changes: 18 additions & 0 deletions crates/clients/networking/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-client-networking-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/networking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ std = [
"gadget-std/std",
"serde/std",
"serde_json/std",
]
]
18 changes: 18 additions & 0 deletions crates/clients/tangle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-client-tangle-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
2 changes: 1 addition & 1 deletion crates/clients/tangle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ std = [
web = [
"dep:subxt",
"subxt/web"
]
]
18 changes: 18 additions & 0 deletions crates/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-config-v0.1.0) - 2025-01-28

### Added

- gadget workspace migration

### Other

- add descriptions to crates ([#616](https://github.com/tangle-network/gadget/pull/616))
Loading

0 comments on commit 4e43b50

Please sign in to comment.