From 768775d6f6e3283b965b00bd08e6a3fea36a0a8a Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 1 Oct 2025 20:16:03 +0200 Subject: [PATCH] chore: release 0.19.4 --- CHANGELOG.md | 5 ++++- Cargo.toml | 12 ++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4037b717..32b14b453 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,11 @@ 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.19.3](https://github.com/foundry-rs/compilers/releases/tag/v0.19.3) - 2025-09-18 +## [0.19.4](https://github.com/foundry-rs/compilers/releases/tag/v0.19.4) - 2025-10-01 ### Bug Fixes +- Resolve imports at the end ([#326](https://github.com/foundry-rs/compilers/issues/326)) - Make sources' paths absolute ([#312](https://github.com/foundry-rs/compilers/issues/312)) - Sanitize `stopAfter` ([#309](https://github.com/foundry-rs/compilers/issues/309)) - Remove superfluous assertion ([#304](https://github.com/foundry-rs/compilers/issues/304)) @@ -28,6 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Remove feature(doc_auto_cfg) ([#327](https://github.com/foundry-rs/compilers/issues/327)) +- Release 0.19.3 ([#325](https://github.com/foundry-rs/compilers/issues/325)) - [`ci`] Rescope permissions according to principle of least privilege ([#323](https://github.com/foundry-rs/compilers/issues/323)) - [`ci`] Harden workflow by setting default permission to read only ([#320](https://github.com/foundry-rs/compilers/issues/320)) - [`ci`] Add CodeQL ([#319](https://github.com/foundry-rs/compilers/issues/319)) diff --git a/Cargo.toml b/Cargo.toml index 3426b8c12..9ea5484ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] authors = ["Foundry Maintainers"] -version = "0.19.3" +version = "0.19.4" rust-version = "1.88" readme = "README.md" license = "MIT OR Apache-2.0" @@ -36,11 +36,11 @@ redundant-lifetimes = "warn" all = "warn" [workspace.dependencies] -foundry-compilers = { path = "crates/compilers", version = "0.19.3" } -foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.3" } -foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.3" } -foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.3" } -foundry-compilers-core = { path = "crates/core", version = "0.19.3" } +foundry-compilers = { path = "crates/compilers", version = "0.19.4" } +foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.19.4" } +foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.19.4" } +foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.19.4" } +foundry-compilers-core = { path = "crates/core", version = "0.19.4" } alloy-json-abi = { version = "1.3", features = ["serde_json"] } alloy-primitives = { version = "1.3", features = ["serde", "rand"] }