Skip to content

Commit d529ee0

Browse files
authored
chore: release 0.19.3 (#325)
1 parent 9e7f36f commit d529ee0

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.2](https://github.com/foundry-rs/compilers/releases/tag/v0.19.2) - 2025-09-11
8+
## [0.19.3](https://github.com/foundry-rs/compilers/releases/tag/v0.19.3) - 2025-09-18
99

1010
### Bug Fixes
1111

@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Dependencies
1818

19+
- [`ci`] Pin deps in workflow and add `dependabot` to update them weekly ([#321](https://github.com/foundry-rs/compilers/issues/321))
1920
- [deps] Bump solar ([#315](https://github.com/foundry-rs/compilers/issues/315))
2021
- [deps] Switch to solar meta crate ([#307](https://github.com/foundry-rs/compilers/issues/307))
2122
- [deps] Bump to 0.18.3 ([#303](https://github.com/foundry-rs/compilers/issues/303))
@@ -27,6 +28,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2728

2829
### Miscellaneous Tasks
2930

31+
- [`ci`] Rescope permissions according to principle of least privilege ([#323](https://github.com/foundry-rs/compilers/issues/323))
32+
- [`ci`] Harden workflow by setting default permission to read only ([#320](https://github.com/foundry-rs/compilers/issues/320))
33+
- [`ci`] Add CodeQL ([#319](https://github.com/foundry-rs/compilers/issues/319))
34+
- Release 0.19.2 ([#317](https://github.com/foundry-rs/compilers/issues/317))
3035
- [`ci`] Add `ci-success` step so we can make this a condition for merging ([#316](https://github.com/foundry-rs/compilers/issues/316))
3136
- Release 0.19.1 ([#313](https://github.com/foundry-rs/compilers/issues/313))
3237
- Use FnMut instead of FnOnce + Copy ([#310](https://github.com/foundry-rs/compilers/issues/310))
@@ -38,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3843

3944
### Performance
4045

46+
- Improve linking implementation ([#324](https://github.com/foundry-rs/compilers/issues/324))
4147
- Parallelize Remapping::get_many ([#314](https://github.com/foundry-rs/compilers/issues/314))
4248

4349
### Refactor

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.2"
7+
version = "0.19.3"
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.2" }
40-
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.2" }
41-
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.2" }
42-
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.2" }
43-
foundry-compilers-core = { path = "crates/core", version = "0.19.2" }
39+
foundry-compilers = { path = "crates/compilers", version = "0.19.3" }
40+
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.3" }
41+
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.3" }
42+
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.3" }
43+
foundry-compilers-core = { path = "crates/core", version = "0.19.3" }
4444

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

0 commit comments

Comments
 (0)