Skip to content

Commit 4142299

Browse files
committed
chore: release 0.8.14
1 parent 6fff20a commit 4142299

File tree

12 files changed

+117
-11
lines changed

12 files changed

+117
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
9+
10+
### Dependencies
11+
12+
- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))
13+
14+
### Features
15+
16+
- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))
17+
818
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
919

1020
### Bug Fixes
@@ -19,6 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1929

2030
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
2131

32+
### Miscellaneous Tasks
33+
34+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
35+
2236
### Other
2337

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

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.8.13"
6+
version = "0.8.14"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]
@@ -39,16 +39,16 @@ all = "warn"
3939

4040
[workspace.dependencies]
4141
# workspace crates
42-
alloy-core = { version = "0.8.13", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.13", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.13", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.13", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.13", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.13", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.13", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.13", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.13", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.13", path = "crates/syn-solidity", default-features = false }
42+
alloy-core = { version = "0.8.14", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.14", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.14", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.14", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.14", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.14", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.14", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.14", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.14", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.14", path = "crates/syn-solidity", default-features = false }
5252

5353
# serde
5454
serde = { version = "1.0", default-features = false, features = ["alloc"] }

crates/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
13+
814
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
915

1016
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,26 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
9+
10+
### Dependencies
11+
12+
- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))
13+
14+
### Features
15+
16+
- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))
17+
818
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
919

1020
### Features
1121

1222
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
1323

24+
### Miscellaneous Tasks
25+
26+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
27+
1428
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
1529

1630
### Miscellaneous Tasks

crates/json-abi/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
13+
814
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
915

1016
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
9+
10+
### Dependencies
11+
12+
- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))
13+
14+
### Features
15+
16+
- Switch all std::error to core::error ([#815](https://github.com/alloy-rs/core/issues/815))
17+
818
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
919

20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
23+
1024
### Other
1125

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

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
21+
1822
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
1923

2024
### Miscellaneous Tasks

crates/sol-macro-input/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
13+
814
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
915

1016
### Miscellaneous Tasks

crates/sol-macro/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
13+
814
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
915

1016
### Miscellaneous Tasks

crates/sol-type-parser/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
9+
10+
### Dependencies
11+
12+
- Bump MSRV to 1.81 ([#790](https://github.com/alloy-rs/core/issues/790))
13+
14+
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
19+
820
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
921

1022
### Miscellaneous Tasks

0 commit comments

Comments
 (0)