Skip to content

Commit

Permalink
chore: release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Jul 18, 2024
1 parent 3242f6e commit ea34637
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.0](https://github.com/foundry-rs/compilers/releases/tag/v0.10.0) - 2024-07-18

### Bug Fixes

- Allow empty modifier body in AST ([#169](https://github.com/foundry-rs/compilers/issues/169))
- Avoid errors when parsing empty sourcemap ([#165](https://github.com/foundry-rs/compilers/issues/165))
- Fix inconsistent trailing slash in remappings ([#49](https://github.com/foundry-rs/compilers/issues/49))

### Features

- Add `eofVersion` config option ([#174](https://github.com/foundry-rs/compilers/issues/174))
- Allow passing extra cli args to solc + some cleanup ([#171](https://github.com/foundry-rs/compilers/issues/171))

## [0.9.0](https://github.com/foundry-rs/compilers/releases/tag/v0.9.0) - 2024-06-29

### Bug Fixes
Expand All @@ -22,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.9.0
- Improve stripping file prefixes ([#164](https://github.com/foundry-rs/compilers/issues/164))
- Improve some trace-level logs ([#163](https://github.com/foundry-rs/compilers/issues/163))
- Remove most impl AsRef<str,Path> ([#157](https://github.com/foundry-rs/compilers/issues/157))
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.9.0"
version = "0.10.0"
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.9.0" }
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.9.0" }
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.9.0" }
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.9.0" }
foundry-compilers-core = { path = "crates/core", version = "0.9.0" }
foundry-compilers = { path = "crates/compilers", version = "0.10.0" }
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.10.0" }
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.10.0" }
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.10.0" }
foundry-compilers-core = { path = "crates/core", version = "0.10.0" }

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

0 comments on commit ea34637

Please sign in to comment.