This repository was archived by the owner on Apr 20, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,26 +5,30 @@ 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.13 ] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.13 ) - 2026-01-20
8+ ## [ 0.19.14 ] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.14 ) - 2026-01-22
99
1010### Bug Fixes
1111
12+ - Use absolute path for exists() check in resolve_library_import ([ #355 ] ( https://github.com/foundry-rs/compilers/issues/355 ) )
13+ - Disable sparse output optimization when AST is requested ([ #352 ] ( https://github.com/foundry-rs/compilers/issues/352 ) )
14+ - Apply remappings to resolved relative import paths ([ #353 ] ( https://github.com/foundry-rs/compilers/issues/353 ) )
15+ - Match artifact by profile when writing extra output files ([ #350 ] ( https://github.com/foundry-rs/compilers/issues/350 ) )
1216- Add snake_case aliases for ModelCheckerSettings fields ([ #348 ] ( https://github.com/foundry-rs/compilers/issues/348 ) )
1317- Normalize Vyper EVM version during input creation ([ #345 ] ( https://github.com/foundry-rs/compilers/issues/345 ) )
1418- Sort remapping candidates to avoid non deterministic output ([ #343 ] ( https://github.com/foundry-rs/compilers/issues/343 ) )
1519
1620### Dependencies
1721
22+ - Bump version, prepare for release
1823- Bump 0.19.12 ([ #347 ] ( https://github.com/foundry-rs/compilers/issues/347 ) )
19- - Bump
2024
2125### Miscellaneous Tasks
2226
27+ - [ release] 0.19.13 ([ #349 ] ( https://github.com/foundry-rs/compilers/issues/349 ) )
2328- Release 0.19.11 ([ #346 ] ( https://github.com/foundry-rs/compilers/issues/346 ) )
2429
2530### Other
2631
27- - Merge branch 'main' of github.com: foundry-rs /compilers
2832- Update to tempoxyz ([ #344 ] ( https://github.com/foundry-rs/compilers/issues/344 ) )
2933
3034## [ 0.19.10] ( https://github.com/foundry-rs/compilers/releases/tag/v0.19.10 ) - 2025-11-19
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.13 "
7+ version = " 0.19.14 "
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.13 " }
40- foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.19.13 " }
41- foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.19.13 " }
42- foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.19.13 " }
43- foundry-compilers-core = { path = " crates/core" , version = " 0.19.13 " }
39+ foundry-compilers = { path = " crates/compilers" , version = " 0.19.14 " }
40+ foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.19.14 " }
41+ foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.19.14 " }
42+ foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.19.14 " }
43+ foundry-compilers-core = { path = " crates/core" , version = " 0.19.14 " }
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.12 "
48+ foundry-compilers = " 0.19.14 "
4949```
5050
5151Example usage:
You can’t perform that action at this time.
0 commit comments