1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-08-01 13:07:47 +00:00

docs: update changelog

This commit is contained in:
Kevin Amado 2022-02-18 13:09:44 -05:00
parent ea3a5d9d92
commit 604e7aa25a
No known key found for this signature in database
GPG key ID: FFF341057F503148

View file

@ -22,18 +22,44 @@ Types of changes
- Let-in expressions are now indented in the top-level of a file. - Let-in expressions are now indented in the top-level of a file.
- Patterns avoid a new line after `@`: - Patterns avoid a new line after `@`:
```nix ```diff
- args @ - args @
- { - {
+ args @ { + args @ {
``` ```
```nix ```diff
- } - }
- @ inp: - @ inp:
+ } @ inp: + } @ inp:
``` ```
- Attribute sets no longer have spaces
before the first element or after the last:
```diff
- { b = 1; }
+ {b = 1;}
```
- Pattern matching lambdas no longer have spaces
before the first or after the last element:
```diff
- ({ ... }: _)
+ ({...}: _)
```
- Ellipsis is no longer count as an element when spreading pattern matching lambdas:
```diff
- {
- pkgs,
- ...
- }:
+ {pkgs, ...}:
```
## [0.2.0] - 2022-02-17 ## [0.2.0] - 2022-02-17
### Added ### Added