Skip to content

Commit 9bfa2d0

Browse files
committed
chore: release 1.1.1
1 parent 4b00679 commit 9bfa2d0

File tree

12 files changed

+97
-11
lines changed

12 files changed

+97
-11
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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+
## [1.1.1](https://github.com/alloy-rs/core/releases/tag/v1.1.1) - 2025-05-19
9+
10+
### Features
11+
12+
- Added standalone format_units_with ([#947](https://github.com/alloy-rs/core/issues/947))
13+
14+
### Miscellaneous Tasks
15+
16+
- Re-use alloy_primitives::hex ([#952](https://github.com/alloy-rs/core/issues/952))
17+
18+
### Other
19+
20+
- Remove unnecessary bound on `sol_data::Array` ([#951](https://github.com/alloy-rs/core/issues/951))
21+
822
## [1.1.0](https://github.com/alloy-rs/core/releases/tag/v1.1.0) - 2025-04-30
923

1024
### Bug Fixes
@@ -27,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2741
- Add `KECCAK256_EMPTY` from `revm::primitives` ([#931](https://github.com/alloy-rs/core/issues/931))
2842
- Convert between `Signed` of different length ([#923](https://github.com/alloy-rs/core/issues/923))
2943

44+
### Miscellaneous Tasks
45+
46+
- Release 1.1.0
47+
3048
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
3149

3250
### Features

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 = "1.1.0"
6+
version = "1.1.1"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]
@@ -35,16 +35,16 @@ all = "warn"
3535

3636
[workspace.dependencies]
3737
# workspace crates
38-
alloy-core = { version = "1.1.0", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "1.1.0", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "1.1.0", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "1.1.0", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "1.1.0", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "1.1.0", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "1.1.0", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "1.1.0", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "1.1.0", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "1.1.0", path = "crates/syn-solidity", default-features = false }
38+
alloy-core = { version = "1.1.1", path = "crates/core", default-features = false }
39+
alloy-dyn-abi = { version = "1.1.1", path = "crates/dyn-abi", default-features = false }
40+
alloy-json-abi = { version = "1.1.1", path = "crates/json-abi", default-features = false }
41+
alloy-primitives = { version = "1.1.1", path = "crates/primitives", default-features = false }
42+
alloy-sol-macro = { version = "1.1.1", path = "crates/sol-macro", default-features = false }
43+
alloy-sol-macro-input = { version = "1.1.1", path = "crates/sol-macro-input", default-features = false }
44+
alloy-sol-macro-expander = { version = "1.1.1", path = "crates/sol-macro-expander", default-features = false }
45+
alloy-sol-type-parser = { version = "1.1.1", path = "crates/sol-type-parser", default-features = false }
46+
alloy-sol-types = { version = "1.1.1", path = "crates/sol-types", default-features = false }
47+
syn-solidity = { version = "1.1.1", path = "crates/syn-solidity", default-features = false }
4848

4949
# serde
5050
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+
## [1.1.0](https://github.com/alloy-rs/core/releases/tag/v1.1.0) - 2025-04-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.1.0
13+
814
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
915

1016
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +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+
## [1.1.1](https://github.com/alloy-rs/core/releases/tag/v1.1.1) - 2025-05-19
9+
10+
### Miscellaneous Tasks
11+
12+
- Re-use alloy_primitives::hex ([#952](https://github.com/alloy-rs/core/issues/952))
13+
814
## [1.1.0](https://github.com/alloy-rs/core/releases/tag/v1.1.0) - 2025-04-30
915

1016
### Documentation
1117

1218
- Improve eip712 docs and discoverability ([#940](https://github.com/alloy-rs/core/issues/940))
1319

20+
### Miscellaneous Tasks
21+
22+
- Release 1.1.0
23+
1424
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
1525

1626
### Features

crates/json-abi/CHANGELOG.md

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

1212
- [`sol!`] Ignore unlinked bytecode ([#935](https://github.com/alloy-rs/core/issues/935))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 1.1.0
17+
1418
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
1519

1620
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 10 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+
## [1.1.1](https://github.com/alloy-rs/core/releases/tag/v1.1.1) - 2025-05-19
9+
10+
### Features
11+
12+
- Added standalone format_units_with ([#947](https://github.com/alloy-rs/core/issues/947))
13+
814
## [1.1.0](https://github.com/alloy-rs/core/releases/tag/v1.1.0) - 2025-04-30
915

1016
### Features
@@ -16,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1622
- Add `KECCAK256_EMPTY` from `revm::primitives` ([#931](https://github.com/alloy-rs/core/issues/931))
1723
- Convert between `Signed` of different length ([#923](https://github.com/alloy-rs/core/issues/923))
1824

25+
### Miscellaneous Tasks
26+
27+
- Release 1.1.0
28+
1929
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
2030

2131
### Features

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
- Add validated variants to ABI decoding methods ([#928](https://github.com/alloy-rs/core/issues/928))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 1.1.0
21+
1822
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
1923

2024
### Features

crates/sol-macro-input/CHANGELOG.md

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

1212
- [`sol!`] Ignore unlinked bytecode ([#935](https://github.com/alloy-rs/core/issues/935))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 1.1.0
17+
1418
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
1519

1620
### Miscellaneous Tasks

crates/sol-macro/CHANGELOG.md

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

1212
- [`sol!`] Ignore unlinked bytecode ([#935](https://github.com/alloy-rs/core/issues/935))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 1.1.0
17+
1418
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
1519

1620
### Features

crates/sol-type-parser/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+
## [1.1.0](https://github.com/alloy-rs/core/releases/tag/v1.1.0) - 2025-04-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.1.0
13+
814
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)