Skip to content

Commit c16927b

Browse files
committed
chore: release 0.10.3
1 parent f2b260f commit c16927b

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,33 @@ 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.10.2](https://github.com/foundry-rs/compilers/releases/tag/v0.10.2) - 2024-08-01
8+
## [0.10.3](https://github.com/foundry-rs/compilers/releases/tag/v0.10.3) - 2024-08-26
99

1010
### Bug Fixes
1111

12+
- [flatten] Update license handling logic ([#184](https://github.com/foundry-rs/compilers/issues/184))
1213
- Unify logic for ignored warnings ([#179](https://github.com/foundry-rs/compilers/issues/179))
1314
- Remove outdated build infos ([#177](https://github.com/foundry-rs/compilers/issues/177))
1415
- Make remappings resolution more deterministic ([#176](https://github.com/foundry-rs/compilers/issues/176))
1516

17+
### Documentation
18+
19+
- Docs fix spelling issues ([#190](https://github.com/foundry-rs/compilers/issues/190))
20+
1621
### Features
1722

23+
- Always provide `Default` for `MultiCompiler` ([#188](https://github.com/foundry-rs/compilers/issues/188))
24+
- [vyper] Add experimental codegen to settings ([#186](https://github.com/foundry-rs/compilers/issues/186))
25+
- More user-friendly error when no compiler is available ([#185](https://github.com/foundry-rs/compilers/issues/185))
1826
- Sanitize EVM version for vyper ([#181](https://github.com/foundry-rs/compilers/issues/181))
1927

28+
### Miscellaneous Tasks
29+
30+
- Release 0.10.2
31+
2032
### Other
2133

34+
- Incorrect Default EVM Version for Solidity Compiler 0.4.21-0.5.4 ([#189](https://github.com/foundry-rs/compilers/issues/189))
2235
- Update README to link docs and update install instructions ([#180](https://github.com/foundry-rs/compilers/issues/180))
2336

2437
## [0.10.1](https://github.com/foundry-rs/compilers/releases/tag/v0.10.1) - 2024-07-26

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[workspace.package]
66
authors = ["Foundry Maintainers"]
7-
version = "0.10.2"
7+
version = "0.10.3"
88
rust-version = "1.70"
99
readme = "README.md"
1010
license = "MIT OR Apache-2.0"
@@ -31,11 +31,11 @@ unused-must-use = "deny"
3131
all = "warn"
3232

3333
[workspace.dependencies]
34-
foundry-compilers = { path = "crates/compilers", version = "0.10.2" }
35-
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.10.2" }
36-
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.10.2" }
37-
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.10.2" }
38-
foundry-compilers-core = { path = "crates/core", version = "0.10.2" }
34+
foundry-compilers = { path = "crates/compilers", version = "0.10.3" }
35+
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.10.3" }
36+
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.10.3" }
37+
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.10.3" }
38+
foundry-compilers-core = { path = "crates/core", version = "0.10.3" }
3939

4040
alloy-json-abi = { version = "0.7", features = ["serde_json"] }
4141
alloy-primitives = { version = "0.7", features = ["serde", "rand"] }

0 commit comments

Comments
 (0)