@@ -7,9 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.2.0] - 2022-02-17
11
+
10
12
### Added
11
13
12
- - Pre-built binaries for x86_64-linux and aarch64-linux
14
+ - Pre-built binaries for x86_64-linux and aarch64-linux.
15
+ - Made the logic of the ` or-default ` (` a or b ` ) node
16
+ to be equal to the binary operator (` a $operator b ` ).
17
+ This increases consistency across the same family of elements.
18
+ - Remove users freedom to insert newlines
19
+ before the ` ? ` in pattern bindings (` a ? b ` ).
20
+
21
+ Inserting a newline after the ` ? ` is still possible.
22
+
23
+ This increases consistency on where to break a long pattern binding.
24
+
25
+ - Remove space on empty containers (` [] ` , ` {} ` ).
26
+ - Add a ` --version ` flag to the CLI.
27
+ - Reduce 1 indentation level in ` let-in ` expressions,
28
+ when the target expression is a parenthesis, attr-set, list, or string.
29
+ - Support inline comments on lists, attr-sets, and let-in expressions.
30
+ - String interpolations in multi-line strings
31
+ now have a nice-looking indentation.
32
+
33
+ ### Fixed
34
+
35
+ - A bug in the current position counter
36
+ caused a small percentage of multiline comments in Nixpkgs
37
+ to be unaligned by one character.
13
38
14
39
## [ 0.1.0] - 2022-02-14
15
40
@@ -26,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
51
27
52
---
28
53
29
- [ unreleased ] : https://github.com/kamadorueda/alejandra/compare/0.1.0...HEAD
54
+ [ unreleased ] : https://github.com/kamadorueda/alejandra/compare/0.2.0...HEAD
55
+ [ 0.1.0 ] : https://github.com/kamadorueda/alejandra/compare/0.1.0...0.2.0
30
56
[ 0.1.0 ] : https://github.com/kamadorueda/alejandra/compare/0.0.0...0.1.0
31
57
[ 0.0.0 ] : https://github.com/kamadorueda/alejandra/compare/6adfbe8516bf6d9e896534e01118e1bc41f65425...0.0.0
0 commit comments