Skip to content

Commit ff2a8d6

Browse files
committed
chore: release 0.12.8
1 parent 962b67b commit ff2a8d6

File tree

2 files changed

+30
-34
lines changed

2 files changed

+30
-34
lines changed

CHANGELOG.md

Lines changed: 24 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,12 @@ 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.12.7](https://github.com/foundry-rs/compilers/releases/tag/v0.12.7) - 2024-12-05
8+
## [0.12.8](https://github.com/foundry-rs/compilers/releases/tag/v0.12.8) - 2024-12-13
99

1010
### Bug Fixes
1111

12+
- Correctly merge restrictions ([#234](https://github.com/foundry-rs/compilers/issues/234))
1213
- Vyper version comparison typo ([#232](https://github.com/foundry-rs/compilers/issues/232))
13-
14-
## [0.12.6](https://github.com/foundry-rs/compilers/releases/tag/v0.12.6) - 2024-12-04
15-
16-
### Miscellaneous Tasks
17-
18-
- Release 0.12.6
19-
20-
### Performance
21-
22-
- Don't request unnecessary output ([#231](https://github.com/foundry-rs/compilers/issues/231))
23-
24-
## [0.12.5](https://github.com/foundry-rs/compilers/releases/tag/v0.12.5) - 2024-12-04
25-
26-
### Miscellaneous Tasks
27-
28-
- Release 0.12.5
29-
- Release 0.12.5
30-
31-
### Refactor
32-
33-
- Make Contract generic for Compiler and add metadata to CompilerOutput ([#224](https://github.com/foundry-rs/compilers/issues/224))
34-
35-
## [0.12.4](https://github.com/foundry-rs/compilers/releases/tag/v0.12.4) - 2024-12-02
36-
37-
### Bug Fixes
38-
3914
- Add fallback parser for contract names ([#229](https://github.com/foundry-rs/compilers/issues/229))
4015
- Fix minor grammatical issue in project documentation ([#226](https://github.com/foundry-rs/compilers/issues/226))
4116

@@ -45,12 +20,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4520

4621
### Miscellaneous Tasks
4722

23+
- Release 0.12.7
24+
- Release 0.12.6
25+
- Release 0.12.5
26+
- Release 0.12.5
4827
- Release 0.12.4
4928

5029
### Other
5130

31+
- Move deny to ci ([#233](https://github.com/foundry-rs/compilers/issues/233))
5232
- Add note about grammar,spelling prs ([#228](https://github.com/foundry-rs/compilers/issues/228))
5333

34+
### Performance
35+
36+
- Don't request unnecessary output ([#231](https://github.com/foundry-rs/compilers/issues/231))
37+
38+
### Refactor
39+
40+
- Make Contract generic for Compiler and add metadata to CompilerOutput ([#224](https://github.com/foundry-rs/compilers/issues/224))
41+
5442
## [0.12.3](https://github.com/foundry-rs/compilers/releases/tag/v0.12.3) - 2024-11-20
5543

5644
### Bug Fixes
@@ -89,7 +77,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8977
- Sanitize `settings.optimizer.details.inliner` ([#216](https://github.com/foundry-rs/compilers/issues/216))
9078
- [tests] Always try installing pinned solc ([#217](https://github.com/foundry-rs/compilers/issues/217))
9179
- Outdated merge build error
92-
- Correctly handle b as pre-release in Vyper version ([#213](https://github.com/foundry-rs/compilers/issues/213))
9380

9481
### Features
9582

@@ -102,6 +89,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10289
- Remove outdated `ref` patterns ([#218](https://github.com/foundry-rs/compilers/issues/218))
10390
- Inline constants in Settings::sanitize ([#219](https://github.com/foundry-rs/compilers/issues/219))
10491
- Use Version::new over .parse ([#220](https://github.com/foundry-rs/compilers/issues/220))
92+
93+
## [0.11.6](https://github.com/foundry-rs/compilers/releases/tag/v0.11.6) - 2024-10-16
94+
95+
### Bug Fixes
96+
97+
- Correctly handle b as pre-release in Vyper version ([#213](https://github.com/foundry-rs/compilers/issues/213))
98+
99+
### Miscellaneous Tasks
100+
105101
- Release 0.11.6
106102

107103
## [0.11.5](https://github.com/foundry-rs/compilers/releases/tag/v0.11.5) - 2024-10-14

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.12.7"
7+
version = "0.12.8"
88
rust-version = "1.83"
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.12.7" }
35-
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.12.7" }
36-
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.12.7" }
37-
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.12.7" }
38-
foundry-compilers-core = { path = "crates/core", version = "0.12.7" }
34+
foundry-compilers = { path = "crates/compilers", version = "0.12.8" }
35+
foundry-compilers-artifacts = { path = "crates/artifacts/artifacts", version = "0.12.8" }
36+
foundry-compilers-artifacts-solc = { path = "crates/artifacts/solc", version = "0.12.8" }
37+
foundry-compilers-artifacts-vyper = { path = "crates/artifacts/vyper", version = "0.12.8" }
38+
foundry-compilers-core = { path = "crates/core", version = "0.12.8" }
3939

4040
alloy-json-abi = { version = "0.8", features = ["serde_json"] }
4141
alloy-primitives = { version = "0.8", features = ["serde", "rand"] }

0 commit comments

Comments
 (0)