Skip to content

Commit

Permalink
chore: release 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Aug 26, 2024
1 parent f2b260f commit c16927b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,33 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.2](https://github.com/foundry-rs/compilers/releases/tag/v0.10.2) - 2024-08-01
## [0.10.3](https://github.com/foundry-rs/compilers/releases/tag/v0.10.3) - 2024-08-26

### Bug Fixes

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

### Documentation

- Docs fix spelling issues ([#190](https://github.com/foundry-rs/compilers/issues/190))

### Features

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

### Miscellaneous Tasks

- Release 0.10.2

### Other

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

## [0.10.1](https://github.com/foundry-rs/compilers/releases/tag/v0.10.1) - 2024-07-26
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.package]
authors = ["Foundry Maintainers"]
version = "0.10.2"
version = "0.10.3"
rust-version = "1.70"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand All @@ -31,11 +31,11 @@ unused-must-use = "deny"
all = "warn"

[workspace.dependencies]
foundry-compilers = { path = "crates/compilers", version = "0.10.2" }
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.10.2" }
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.10.2" }
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.10.2" }
foundry-compilers-core = { path = "crates/core", version = "0.10.2" }
foundry-compilers = { path = "crates/compilers", version = "0.10.3" }
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.10.3" }
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.10.3" }
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.10.3" }
foundry-compilers-core = { path = "crates/core", version = "0.10.3" }

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

0 comments on commit c16927b

Please sign in to comment.