Skip to content
This repository was archived by the owner on Apr 20, 2026. It is now read-only.

Commit 809c5d2

Browse files
authored
1 parent ad929d0 commit 809c5d2

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,30 @@ 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.19.13](https://github.com/foundry-rs/compilers/releases/tag/v0.19.13) - 2026-01-20
8+
## [0.19.14](https://github.com/foundry-rs/compilers/releases/tag/v0.19.14) - 2026-01-22
99

1010
### Bug Fixes
1111

12+
- Use absolute path for exists() check in resolve_library_import ([#355](https://github.com/foundry-rs/compilers/issues/355))
13+
- Disable sparse output optimization when AST is requested ([#352](https://github.com/foundry-rs/compilers/issues/352))
14+
- Apply remappings to resolved relative import paths ([#353](https://github.com/foundry-rs/compilers/issues/353))
15+
- Match artifact by profile when writing extra output files ([#350](https://github.com/foundry-rs/compilers/issues/350))
1216
- Add snake_case aliases for ModelCheckerSettings fields ([#348](https://github.com/foundry-rs/compilers/issues/348))
1317
- Normalize Vyper EVM version during input creation ([#345](https://github.com/foundry-rs/compilers/issues/345))
1418
- Sort remapping candidates to avoid non deterministic output ([#343](https://github.com/foundry-rs/compilers/issues/343))
1519

1620
### Dependencies
1721

22+
- Bump version, prepare for release
1823
- Bump 0.19.12 ([#347](https://github.com/foundry-rs/compilers/issues/347))
19-
- Bump
2024

2125
### Miscellaneous Tasks
2226

27+
- [release] 0.19.13 ([#349](https://github.com/foundry-rs/compilers/issues/349))
2328
- Release 0.19.11 ([#346](https://github.com/foundry-rs/compilers/issues/346))
2429

2530
### Other
2631

27-
- Merge branch 'main' of github.com:foundry-rs/compilers
2832
- Update to tempoxyz ([#344](https://github.com/foundry-rs/compilers/issues/344))
2933

3034
## [0.19.10](https://github.com/foundry-rs/compilers/releases/tag/v0.19.10) - 2025-11-19

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.19.13"
7+
version = "0.19.14"
88
rust-version = "1.88"
99
readme = "README.md"
1010
license = "MIT OR Apache-2.0"
@@ -36,11 +36,11 @@ redundant-lifetimes = "warn"
3636
all = "warn"
3737

3838
[workspace.dependencies]
39-
foundry-compilers = { path = "crates/compilers", version = "0.19.13" }
40-
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.13" }
41-
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.13" }
42-
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.13" }
43-
foundry-compilers-core = { path = "crates/core", version = "0.19.13" }
39+
foundry-compilers = { path = "crates/compilers", version = "0.19.14" }
40+
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.14" }
41+
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.14" }
42+
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.14" }
43+
foundry-compilers-core = { path = "crates/core", version = "0.19.14" }
4444

4545
alloy-json-abi = { version = "1.3", features = ["serde_json"] }
4646
alloy-primitives = { version = "1.3", features = ["serde", "rand"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To install, simply add `foundry-compilers` to your cargo dependencies.
4545

4646
```toml
4747
[dependencies]
48-
foundry-compilers = "0.19.12"
48+
foundry-compilers = "0.19.14"
4949
```
5050

5151
Example usage:

0 commit comments

Comments
 (0)