chore: update changelog

This commit is contained in:
rvcas 2025-03-02 17:01:34 -05:00 committed by Lucas
parent 0b1297f3b7
commit ee4655328d
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,10 @@
## v1.1.14 - UNRELEASED ## v1.1.14 - UNRELEASED
### Added
- **aiken**: New `-S` flag on `check` and `build` that blocks the printing of warnings but it still shows the total warning count.
### Changed ### Changed
- **aiken-lang**: Prevent (type error) backpassing blocks with empty continuation. See [#1111](https://github.com/aiken-lang/aiken/issues/1111). @KtorZ - **aiken-lang**: Prevent (type error) backpassing blocks with empty continuation. See [#1111](https://github.com/aiken-lang/aiken/issues/1111). @KtorZ

View File

@ -159,7 +159,7 @@ where
} }
} }
if warning_count > 0 && deny && !silent { if warning_count > 0 && deny {
Err(ExitFailure::into_report()) Err(ExitFailure::into_report())
} else { } else {
Ok(()) Ok(())