Skip to content

Commit

Permalink
chore: release 0.8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Dec 9, 2024
1 parent ed0837c commit c268e8d
Show file tree
Hide file tree
Showing 12 changed files with 89 additions and 144 deletions.
51 changes: 21 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,75 +5,66 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Dependencies
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09

- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))

### Features
### Miscellaneous Tasks

- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))
- Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819))
- AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820))
- Update release.toml ([#817](https://github.com/alloy-rs/core/issues/817))

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
### Other

### Bug Fixes
- Remove unsafe code from macro expansions ([#818](https://github.com/alloy-rs/core/issues/818))

- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812))
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Dependencies

- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808))
- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))

### Features

- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))

### Other

- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
- Release 0.8.14

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Bug Fixes

- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812))
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))

### Features

- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))

### Miscellaneous Tasks

- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Bug Fixes
### Dependencies

- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808))

### Documentation

- Update ethers-rs README note ([#798](https://github.com/alloy-rs/core/issues/798))

### Features

- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
- [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793))

### Other

- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
- Add success job ([#795](https://github.com/alloy-rs/core/issues/795))

Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
resolver = "2"

[workspace.package]
version = "0.8.14"
version = "0.8.15"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -39,16 +39,16 @@ all = "warn"

[workspace.dependencies]
# workspace crates
alloy-core = { version = "0.8.14", path = "crates/core", default-features = false }
alloy-dyn-abi = { version = "0.8.14", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.8.14", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.8.14", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.8.14", path = "crates/sol-macro", default-features = false }
alloy-sol-macro-input = { version = "0.8.14", path = "crates/sol-macro-input", default-features = false }
alloy-sol-macro-expander = { version = "0.8.14", path = "crates/sol-macro-expander", default-features = false }
alloy-sol-type-parser = { version = "0.8.14", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.8.14", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.8.14", path = "crates/syn-solidity", default-features = false }
alloy-core = { version = "0.8.15", path = "crates/core", default-features = false }
alloy-dyn-abi = { version = "0.8.15", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.8.15", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.8.15", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.8.15", path = "crates/sol-macro", default-features = false }
alloy-sol-macro-input = { version = "0.8.15", path = "crates/sol-macro-input", default-features = false }
alloy-sol-macro-expander = { version = "0.8.15", path = "crates/sol-macro-expander", default-features = false }
alloy-sol-type-parser = { version = "0.8.15", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.8.15", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.8.15", path = "crates/syn-solidity", default-features = false }

# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
12 changes: 4 additions & 8 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,18 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.14

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Miscellaneous Tasks

- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
Expand Down
14 changes: 4 additions & 10 deletions crates/dyn-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))

### Miscellaneous Tasks

- Release 0.8.14

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Features
Expand All @@ -24,17 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12

### Miscellaneous Tasks

- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Miscellaneous Tasks

- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
Expand Down
14 changes: 5 additions & 9 deletions crates/json-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,22 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Miscellaneous Tasks

- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
- Release 0.8.14

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Features

- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))

Expand Down
34 changes: 13 additions & 21 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09

### Miscellaneous Tasks

- Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819))
- AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820))

## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Dependencies
Expand All @@ -15,46 +22,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))

### Other

- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
- Release 0.8.14

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Bug Fixes

- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))

### Features

- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))

### Miscellaneous Tasks

- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Bug Fixes

- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))

### Features

- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

### Other

- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))

### Performance
Expand Down
22 changes: 12 additions & 10 deletions crates/sol-macro-expander/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09

### Other

- Remove unsafe code from macro expansions ([#818](https://github.com/alloy-rs/core/issues/818))

## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Miscellaneous Tasks

- Release 0.8.14

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Bug Fixes
Expand All @@ -18,17 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12

### Miscellaneous Tasks

- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Miscellaneous Tasks

- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
Expand Down
12 changes: 4 additions & 8 deletions crates/sol-macro-input/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,18 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.14

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Miscellaneous Tasks

- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
Expand Down
12 changes: 4 additions & 8 deletions crates/sol-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,18 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.14

## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26

### Miscellaneous Tasks

- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))

## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05

### Miscellaneous Tasks

- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))

## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
Expand Down
Loading

0 comments on commit c268e8d

Please sign in to comment.