File tree Expand file tree Collapse file tree 3 files changed +22
-8
lines changed
Expand file tree Collapse file tree 3 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.19.12] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.12 ) - 2026-01-19
9+
10+ ### Bug Fixes
11+
12+ - Normalize Vyper EVM version during input creation ([ #345 ] ( https://github.com/foundry-rs/compilers/issues/345 ) )
13+
14+ ### Other
15+
16+ - Bump to 0.19.12 in README
17+
818## [ 0.19.11] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.11 ) - 2026-01-19
919
1020### Bug Fixes
@@ -15,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1525
1626- Update to tempoxyz ([ #344 ] ( https://github.com/foundry-rs/compilers/issues/344 ) )
1727
28+ ### Miscellaneous Tasks
29+
30+ - Release 0.19.11 ([ #346 ] ( https://github.com/foundry-rs/compilers/issues/346 ) )
31+
1832## [ 0.19.10] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.10 ) - 2025-11-19
1933
2034### Bug Fixes
@@ -146,7 +160,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146160### Miscellaneous Tasks
147161
148162- Release 0.17.4
149- - Upstreamed ` strip_bytecode_placeholders ` from foundry ([ #287 ] ( https://github.com/foundry-rs/compilers/issues/287 ) )
163+ - Upstreamed ` strip_bytecode_placeholders ` from foundry ([ #287 ] ( https://github.com/foundry-rs/compilers/issues/287 ) )
150164
151165## [ 0.17.3] ( https://github.com/foundry-rs/compilers/releases/tag/v0.17.3 ) - 2025-06-14
152166
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ resolver = "2"
44
55[workspace .package ]
66authors = [" Foundry Maintainers" ]
7- version = " 0.19.11 "
7+ version = " 0.19.12 "
88rust-version = " 1.88"
99readme = " README.md"
1010license = " MIT OR Apache-2.0"
@@ -36,11 +36,11 @@ redundant-lifetimes = "warn"
3636all = " warn"
3737
3838[workspace .dependencies ]
39- foundry-compilers = { path = " crates/compilers" , version = " 0.19.11 " }
40- foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.19.11 " }
41- foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.19.11 " }
42- foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.19.11 " }
43- foundry-compilers-core = { path = " crates/core" , version = " 0.19.11 " }
39+ foundry-compilers = { path = " crates/compilers" , version = " 0.19.12 " }
40+ foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.19.12 " }
41+ foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.19.12 " }
42+ foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.19.12 " }
43+ foundry-compilers-core = { path = " crates/core" , version = " 0.19.12 " }
4444
4545alloy-json-abi = { version = " 1.3" , features = [" serde_json" ] }
4646alloy-primitives = { version = " 1.3" , features = [" serde" , " rand" ] }
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ To install, simply add `foundry-compilers` to your cargo dependencies.
4545
4646``` toml
4747[dependencies ]
48- foundry-compilers = " 0.19.6 "
48+ foundry-compilers = " 0.19.12 "
4949```
5050
5151Example usage:
You can’t perform that action at this time.
0 commit comments