1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-30 12:07:46 +00:00

docs: update changelog

This commit is contained in:
Kevin Amado 2022-02-22 21:38:29 -05:00
parent 1f4198b932
commit c85d3fcc2b

View file

@ -17,6 +17,27 @@ Types of changes
- Security in case of vulnerabilities.
-->
### Changed
- Pattern matching lambdas now always have the comma after the argument:
```diff
- depthLimit
+ depthLimit,
/*
If this option is true, an error will be thrown, if a certain given depth is exceeded
*/
- ,
```
- Pattern matching lambdas now support inline comments:
```diff
- revision ? ""
- # Specify revision for the options
+ revision ? "", # Specify revision for the options
```
## [0.4.0] - 2022-02-21
### Added