File tree Expand file tree Collapse file tree 2 files changed +26
-6
lines changed Expand file tree Collapse file tree 2 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,25 @@ 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.12.0] ( https://github.com/foundry-rs/compilers/releases/tag/v0.12.0 ) - 2024-11-18
9+
10+ ### Bug Fixes
11+
12+ - Sanitize ` settings.optimizer.details.inliner ` ([ #216 ] ( https://github.com/foundry-rs/compilers/issues/216 ) )
13+ - [ tests] Always try installing pinned solc ([ #217 ] ( https://github.com/foundry-rs/compilers/issues/217 ) )
14+ - Outdated merge build error
15+
16+ ### Features
17+
18+ - Allow multiple compiler configs ([ #170 ] ( https://github.com/foundry-rs/compilers/issues/170 ) )
19+ - Replace solang with solar ([ #215 ] ( https://github.com/foundry-rs/compilers/issues/215 ) )
20+
21+ ### Miscellaneous Tasks
22+
23+ - Remove outdated ` ref ` patterns ([ #218 ] ( https://github.com/foundry-rs/compilers/issues/218 ) )
24+ - Inline constants in Settings::sanitize ([ #219 ] ( https://github.com/foundry-rs/compilers/issues/219 ) )
25+ - Use Version::new over .parse ([ #220 ] ( https://github.com/foundry-rs/compilers/issues/220 ) )
26+
827## [ 0.11.6] ( https://github.com/foundry-rs/compilers/releases/tag/v0.11.6 ) - 2024-10-16
928
1029### Bug Fixes
@@ -14,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1433
1534### Miscellaneous Tasks
1635
36+ - Release 0.11.6
1737- Release 0.11.5
1838- Allow adding vyper sources with ` add_raw_source ` w/ ` .vy ` / ` .vyi ` extension ([ #211 ] ( https://github.com/foundry-rs/compilers/issues/211 ) )
1939- [ ` ci ` ] Fix deny (add ` ZLib ` exception) ([ #212 ] ( https://github.com/foundry-rs/compilers/issues/212 ) )
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.11.6 "
7+ version = " 0.12.0 "
88rust-version = " 1.70"
99readme = " README.md"
1010license = " MIT OR Apache-2.0"
@@ -31,11 +31,11 @@ unused-must-use = "deny"
3131all = " warn"
3232
3333[workspace .dependencies ]
34- foundry-compilers = { path = " crates/compilers" , version = " 0.11.6 " }
35- foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.11.6 " }
36- foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.11.6 " }
37- foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.11.6 " }
38- foundry-compilers-core = { path = " crates/core" , version = " 0.11.6 " }
34+ foundry-compilers = { path = " crates/compilers" , version = " 0.12.0 " }
35+ foundry-compilers-artifacts = { path = " crates/artifacts/artifacts" , version = " 0.12.0 " }
36+ foundry-compilers-artifacts-solc = { path = " crates/artifacts/solc" , version = " 0.12.0 " }
37+ foundry-compilers-artifacts-vyper = { path = " crates/artifacts/vyper" , version = " 0.12.0 " }
38+ foundry-compilers-core = { path = " crates/core" , version = " 0.12.0 " }
3939
4040alloy-json-abi = { version = " 0.8" , features = [" serde_json" ] }
4141alloy-primitives = { version = " 0.8" , features = [" serde" , " rand" ] }
You can’t perform that action at this time.
0 commit comments