Skip to content

Commit a21275d

Browse files
committed
chore: release 0.9.0
1 parent 5402c89 commit a21275d

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,38 @@ 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.8.0](https://github.com/foundry-rs/compilers/releases/tag/v0.8.0) - 2024-06-17
8+
## [0.9.0](https://github.com/foundry-rs/compilers/releases/tag/v0.9.0) - 2024-06-29
99

1010
### Bug Fixes
1111

12+
- Doctests ([#154](https://github.com/foundry-rs/compilers/issues/154))
1213
- [flatten] Small bugs ([#153](https://github.com/foundry-rs/compilers/issues/153))
1314

15+
### Dependencies
16+
17+
- Cleanup workspace deps ([#158](https://github.com/foundry-rs/compilers/issues/158))
18+
19+
### Features
20+
21+
- Respect `paths.libraries` for Vyper ([#159](https://github.com/foundry-rs/compilers/issues/159))
22+
1423
### Miscellaneous Tasks
1524

25+
- Improve stripping file prefixes ([#164](https://github.com/foundry-rs/compilers/issues/164))
26+
- Improve some trace-level logs ([#163](https://github.com/foundry-rs/compilers/issues/163))
27+
- Remove most impl AsRef<str,Path> ([#157](https://github.com/foundry-rs/compilers/issues/157))
28+
- Clarify version cache lock ([#160](https://github.com/foundry-rs/compilers/issues/160))
29+
- Sort derives, derive Eq more ([#161](https://github.com/foundry-rs/compilers/issues/161))
30+
- [meta] Update CODEOWNERS
31+
- Release 0.8.0
1632
- Rename foundry-compilers-project into foundry-compilers ([#152](https://github.com/foundry-rs/compilers/issues/152))
1733
- Clippy
1834
- Move lints to workspace ([#149](https://github.com/foundry-rs/compilers/issues/149))
1935
- Remove unused files and workflow ([#148](https://github.com/foundry-rs/compilers/issues/148))
2036

2137
### Other
2238

39+
- Symlink readme
2340
- Sync workflows
2441

2542
### Performance
@@ -28,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2845

2946
### Refactor
3047

48+
- Unify sources and filtered sources ([#162](https://github.com/foundry-rs/compilers/issues/162))
3149
- [flatten] Move compilation logic into `Flattener` ([#143](https://github.com/foundry-rs/compilers/issues/143))
3250
- Extract artifacts to a separate crate ([#142](https://github.com/foundry-rs/compilers/issues/142))
3351

@@ -603,4 +621,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
603621

604622
- Repo improvements ([#13](https://github.com/foundry-rs/compilers/issues/13))
605623

606-
<!-- generated by git-cliff -->
624+
<!-- generated by git-cliff -->

Cargo.toml

+6-6
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.8.0"
7+
version = "0.9.0"
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.8.0" }
35-
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.8.0" }
36-
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.8.0" }
37-
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.8.0" }
38-
foundry-compilers-core = { path = "crates/core", version = "0.8.0" }
34+
foundry-compilers = { path = "crates/compilers", version = "0.9.0" }
35+
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.9.0" }
36+
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.9.0" }
37+
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.9.0" }
38+
foundry-compilers-core = { path = "crates/core", version = "0.9.0" }
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)