mirror of
https://github.com/RGBCube/alejandra
synced 2025-07-30 12:07:46 +00:00
docs: update changelog
This commit is contained in:
parent
ea3a5d9d92
commit
604e7aa25a
1 changed files with 28 additions and 2 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -22,18 +22,44 @@ Types of changes
|
|||
- Let-in expressions are now indented in the top-level of a file.
|
||||
- Patterns avoid a new line after `@`:
|
||||
|
||||
```nix
|
||||
```diff
|
||||
- args @
|
||||
- {
|
||||
+ args @ {
|
||||
```
|
||||
|
||||
```nix
|
||||
```diff
|
||||
- }
|
||||
- @ 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
|
||||
|
||||
### Added
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue