chore: update changelog
This commit is contained in:
parent
0b1297f3b7
commit
ee4655328d
|
@ -2,6 +2,10 @@
|
|||
|
||||
## 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
|
||||
|
||||
- **aiken-lang**: Prevent (type error) backpassing blocks with empty continuation. See [#1111](https://github.com/aiken-lang/aiken/issues/1111). @KtorZ
|
||||
|
|
|
@ -159,7 +159,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
if warning_count > 0 && deny && !silent {
|
||||
if warning_count > 0 && deny {
|
||||
Err(ExitFailure::into_report())
|
||||
} else {
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in New Issue