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 25, 2025
1 parent 309ca8f commit c524244
Show file tree
Hide file tree
Showing 100 changed files with 1,733 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",
]
]
16 changes: 16 additions & 0 deletions crates/benchmarking/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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-25

### Other

- clippy
- test instrumented client and others ([#9](https://github.com/tangle-network/gadget/pull/9))
- add benchmarking
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
2 changes: 1 addition & 1 deletion crates/blueprint/build-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ publish = false
gadget-std = { workspace = true, features = ["std"] }

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

### Added

- migrate blueprint-manager

### Fixed

- eigensdk-rs git dep
- get crates building again

### Other

- *(keystore)* cleanup Tangle{Bls}Backend traits
- spelling fix
- clippy fixes, renaming
- *(blueprint-manager)* lots of cleanup
- *(blueprint-manager)* remove dead code

## [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
18 changes: 18 additions & 0 deletions crates/blueprint/metadata/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.2.2](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.2.1...blueprint-metadata-v0.2.2) - 2025-01-25

### Added

- migrate blueprint-metadata

### Other

- bump rustdoc-types
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 Blueprint 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-25

### Other

- move `blueprint-serde` dir

## [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
69 changes: 69 additions & 0 deletions crates/clients/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# 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-25

### Added

- *(macros)* use `sdk::Error` instead of `Box<dyn Error>` ([#604](https://github.com/tangle-network/gadget/pull/604))
- eigenlayer incredible squaring blueprint ([#43](https://github.com/tangle-network/gadget/pull/43))
- Improve test utils, fix tests ([#34](https://github.com/tangle-network/gadget/pull/34))
- add cli to workspace ([#19](https://github.com/tangle-network/gadget/pull/19))
- integrate clients into macros
- complete TangleClient, generalize services, contexts
- implement runners ([#11](https://github.com/tangle-network/gadget/pull/11))
- separate key types entirely from keystore/put into crypto crates
- *(gadget-contexts)* contexts, clients, and features
- *(gadget-contexts)* wip implementation of contexts
- add tokio-std, bindings rename, config build

### Fixed

- eigenlayer blueprint test fix
- *(ci)* workflow fix
- eigensdk-rs git dep
- use url 2.5.2
- *(gadget-client-evm)* fix test race condition
- set test mode in harness env
- get Tangle tests passing again
- *(gadget-client-eigenlayer)* test fix
- *(incredible-squaring)* debugging blueprint test
- *(testing-utils)* debugging blueprint tests
- correctly de/serialize keys in keystore
- *(incredible-squaring)* progress on blueprint test and utilized crates
- rename anvil test utils
- remove target addr from p2p client
- [**breaking**] refactoring test runners wip
- get tests compiling
- *(macros)* get TangleClientContext derive building
- use `gadget_std` more
- get macro tests closer to building
- update type paths in `job` macro
- *(gadget-client-eigenlayer)* stop dropping anvil containers in tests
- make some methods public
- *(gadget-client-tangle)* remove `no_std` feature
- cleanup a bunch of warnings

### Other

- fmt
- add fake test to tangle client
- *(keystore)* cleanup Tangle{Bls}Backend traits
- *(clippy)* fmt
- clippy fixes, renaming
- *(blueprint-manager)* lots of cleanup
- fix clippy
- merge `gadget-tokio-std` into `gadget-std`
- *(gadget-client-eigenlayer)* move tests to new file
- clippy
- test instrumented client and others ([#9](https://github.com/tangle-network/gadget/pull/9))
- workspace builds
- working off donovan/contexts, adding networking, logging, keystore change
- *(clippy)* fmt
- updates
2 changes: 1 addition & 1 deletion crates/clients/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,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"]
24 changes: 24 additions & 0 deletions crates/clients/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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-25

### Added

- complete TangleClient, generalize services, contexts

### Fixed

- *(macros)* get TangleClientContext derive building
- use `gadget_std` more

### Other

- *(blueprint-manager)* lots of cleanup
- fix clippy
2 changes: 1 addition & 1 deletion crates/clients/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ thiserror = { workspace = true }
default = ["std"]
std = [
"gadget-std/std",
]
]
34 changes: 34 additions & 0 deletions crates/clients/eigenlayer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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-25

### Added

- *(macros)* use `sdk::Error` instead of `Box<dyn Error>` ([#604](https://github.com/tangle-network/gadget/pull/604))
- eigenlayer incredible squaring blueprint ([#43](https://github.com/tangle-network/gadget/pull/43))
- implement runners ([#11](https://github.com/tangle-network/gadget/pull/11))

### Fixed

- eigenlayer blueprint test fix
- eigensdk-rs git dep
- use url 2.5.2
- *(gadget-client-eigenlayer)* test fix
- rename anvil test utils
- [**breaking**] refactoring test runners wip
- *(gadget-client-eigenlayer)* stop dropping anvil containers in tests

### Other

- *(blueprint-manager)* lots of cleanup
- *(gadget-client-eigenlayer)* move tests to new file
- clippy
- test instrumented client and others ([#9](https://github.com/tangle-network/gadget/pull/9))
- workspace builds
2 changes: 1 addition & 1 deletion crates/clients/eigenlayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ std = [
"gadget-utils-evm/std",
"tokio/full",
# TODO: "url/std",
]
]
30 changes: 30 additions & 0 deletions crates/clients/evm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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-25

### Added

- add cli to workspace ([#19](https://github.com/tangle-network/gadget/pull/19))
- implement runners ([#11](https://github.com/tangle-network/gadget/pull/11))

### Fixed

- *(ci)* workflow fix
- eigensdk-rs git dep
- *(gadget-client-evm)* fix test race condition
- rename anvil test utils
- [**breaking**] refactoring test runners wip

### Other

- *(blueprint-manager)* lots of cleanup
- clippy
- test instrumented client and others ([#9](https://github.com/tangle-network/gadget/pull/9))
- workspace builds
2 changes: 1 addition & 1 deletion crates/clients/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ std = [

# Alloy features
"alloy-primitives/std",
]
]
Loading

0 comments on commit c524244

Please sign in to comment.