@danielx/civet 0.7.24 → 0.7.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1124 -0
- package/dist/browser.js +514 -429
- package/dist/main.js +514 -429
- package/dist/main.mjs +514 -429
- package/dist/unplugin/unplugin.js +8 -8
- package/dist/unplugin/unplugin.mjs +8 -8
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1124 @@
|
|
|
1
|
+
# Civet Changelog
|
|
2
|
+
|
|
3
|
+
This changelog is generated automatically by [`build/changelog.civet`](build/changelog.civet).
|
|
4
|
+
For each version of Civet, it lists and links to all incorporated PRs,
|
|
5
|
+
as well as a full diff and commit list.
|
|
6
|
+
|
|
7
|
+
## 0.7.26 (2024-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.25...v0.7.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.26))
|
|
8
|
+
* Hyphenated object keys like `Content-Type:` [[#1377](https://github.com/DanielXMoore/Civet/pull/1377)]
|
|
9
|
+
* Fix unplugin `parseOptions`, fix eslint plugin for Node 22 [[#1378](https://github.com/DanielXMoore/Civet/pull/1378)]
|
|
10
|
+
|
|
11
|
+
## 0.7.25 (2024-08-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.24...v0.7.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.25))
|
|
12
|
+
* `import operator` bulk import of operators [[#1372](https://github.com/DanielXMoore/Civet/pull/1372)]
|
|
13
|
+
* `continue switch` to fall through at the end of `when` clause [[#1373](https://github.com/DanielXMoore/Civet/pull/1373)]
|
|
14
|
+
* Remove Svelte label `$:` exception (use `:$` if needed) [[#1374](https://github.com/DanielXMoore/Civet/pull/1374)]
|
|
15
|
+
* Expressionize statements followed by trailing member access/call or pipe [[#1375](https://github.com/DanielXMoore/Civet/pull/1375)]
|
|
16
|
+
* Include changelog in NPM release [[#1376](https://github.com/DanielXMoore/Civet/pull/1376)]
|
|
17
|
+
|
|
18
|
+
## 0.7.24 (2024-08-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.23...v0.7.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.24))
|
|
19
|
+
* Fix placeholder expressions at head of pipeline [[#1366](https://github.com/DanielXMoore/Civet/pull/1366)]
|
|
20
|
+
* Support length shorthand `#` when defining objects [[#1367](https://github.com/DanielXMoore/Civet/pull/1367)]
|
|
21
|
+
* Generate tags for Civet releases [[#1368](https://github.com/DanielXMoore/Civet/pull/1368)]
|
|
22
|
+
* Indented `if`/`unless` conditions to enable indented function calls (e.g. `(and)`) [[#1364](https://github.com/DanielXMoore/Civet/pull/1364)]
|
|
23
|
+
* Indented calls in `if` conditions with explicit `then` clause (#1090) [[#1369](https://github.com/DanielXMoore/Civet/pull/1369)]
|
|
24
|
+
* Improved release process and changelog generation [[#1370](https://github.com/DanielXMoore/Civet/pull/1370)]
|
|
25
|
+
|
|
26
|
+
## 0.7.23 (2024-08-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.22...v0.7.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.23))
|
|
27
|
+
* Optional dot in `?.` and `!.` property access: `x?y` and `x!y` [[#1352](https://github.com/DanielXMoore/Civet/pull/1352)]
|
|
28
|
+
* Changelog generation: fetch PRs mostly in parallel [[#1353](https://github.com/DanielXMoore/Civet/pull/1353)]
|
|
29
|
+
* Allow empty `interface` and `namespace` blocks [[#1356](https://github.com/DanielXMoore/Civet/pull/1356)]
|
|
30
|
+
* Add missing parens in ampersand functions starting with object literal [[#1357](https://github.com/DanielXMoore/Civet/pull/1357)]
|
|
31
|
+
* Changelog: Add version dates and diff/commit links, add PR links [[#1358](https://github.com/DanielXMoore/Civet/pull/1358)]
|
|
32
|
+
* Document how to use with React Native / Metro bundler [[#1359](https://github.com/DanielXMoore/Civet/pull/1359)]
|
|
33
|
+
* Fix arrow being treated as assignment in tight arrow functions [[#1360](https://github.com/DanielXMoore/Civet/pull/1360)]
|
|
34
|
+
* Fix esbuild unplugin sourcemap bug [[#1362](https://github.com/DanielXMoore/Civet/pull/1362)]
|
|
35
|
+
* Bulleted arrays with `.` or `•` [[#1361](https://github.com/DanielXMoore/Civet/pull/1361)]
|
|
36
|
+
|
|
37
|
+
## 0.7.22 (2024-08-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.21...v0.7.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.22))
|
|
38
|
+
* Add CommonJS build of Babel plugin, enabling React Native support [[#1351](https://github.com/DanielXMoore/Civet/pull/1351)]
|
|
39
|
+
* Automatic changelog creation [[#1350](https://github.com/DanielXMoore/Civet/pull/1350)]
|
|
40
|
+
|
|
41
|
+
## 0.7.21 (2024-08-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.20...v0.7.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.21))
|
|
42
|
+
* Fix `..` slice operator precedence [[#1332](https://github.com/DanielXMoore/Civet/pull/1332)]
|
|
43
|
+
* Fix `&&` chain precedence with bitwise `&`/`|`/`^` [[#1334](https://github.com/DanielXMoore/Civet/pull/1334)]
|
|
44
|
+
* Assignment operators for div and mod [[#1338](https://github.com/DanielXMoore/Civet/pull/1338)]
|
|
45
|
+
* Nested return type annotation [[#1340](https://github.com/DanielXMoore/Civet/pull/1340)]
|
|
46
|
+
* Fix relational chains involving `!=` [[#1346](https://github.com/DanielXMoore/Civet/pull/1346)]
|
|
47
|
+
* Add missing Unicode assignment operators [[#1347](https://github.com/DanielXMoore/Civet/pull/1347)]
|
|
48
|
+
* Fix CLI for globally installed Civet [[#1348](https://github.com/DanielXMoore/Civet/pull/1348)]
|
|
49
|
+
* CLI `-e`/`--eval` option for running/compiling a string [[#1349](https://github.com/DanielXMoore/Civet/pull/1349)]
|
|
50
|
+
|
|
51
|
+
## 0.7.20 (2024-08-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.19...v0.7.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.20))
|
|
52
|
+
* Fix whitespace in snug `<?` instanceof shorthand [[#1329](https://github.com/DanielXMoore/Civet/pull/1329)]
|
|
53
|
+
* Add `%/`/`÷` integer division, fix `%%` precedence [[#1331](https://github.com/DanielXMoore/Civet/pull/1331)]
|
|
54
|
+
|
|
55
|
+
## 0.7.19 (2024-07-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.18...v0.7.19), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.19))
|
|
56
|
+
* Prevent BinaryOp function shorthand from shadowing arrow functions. [[#1317](https://github.com/DanielXMoore/Civet/pull/1317)]
|
|
57
|
+
* Use register to avoid experimental loaders deprecation warning [[#1324](https://github.com/DanielXMoore/Civet/pull/1324)]
|
|
58
|
+
* Support for `unique symbol` type in TS [[#1323](https://github.com/DanielXMoore/Civet/pull/1323)]
|
|
59
|
+
|
|
60
|
+
## 0.7.18 (2024-07-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.17...v0.7.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.18))
|
|
61
|
+
* Jest integration [[#1313](https://github.com/DanielXMoore/Civet/pull/1313)]
|
|
62
|
+
* Hoist array binding and rest ref declarations. Fixes #1139. Fixes #1312 [[#1314](https://github.com/DanielXMoore/Civet/pull/1314)]
|
|
63
|
+
|
|
64
|
+
## 0.7.17 (2024-07-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.16...v0.7.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.17))
|
|
65
|
+
* Move unplugin and build using Civet instead of tsup [[#1306](https://github.com/DanielXMoore/Civet/pull/1306)]
|
|
66
|
+
* CLI tests [[#1308](https://github.com/DanielXMoore/Civet/pull/1308)]
|
|
67
|
+
* Fix import looking like multiplication [[#1310](https://github.com/DanielXMoore/Civet/pull/1310)]
|
|
68
|
+
* Fix indented chained ternaries [[#1311](https://github.com/DanielXMoore/Civet/pull/1311)]
|
|
69
|
+
|
|
70
|
+
## 0.7.16 (2024-07-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.15...v0.7.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.16))
|
|
71
|
+
* Fix pipe mode in CLI [[#1305](https://github.com/DanielXMoore/Civet/pull/1305)]
|
|
72
|
+
|
|
73
|
+
## 0.7.15 (2024-07-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.14...v0.7.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.15))
|
|
74
|
+
* More CLI/typechecking fixes: `civetconfig` extensions, `@types` support, `includes`/`excludes`/`files` support, typechecking without filename list [[#1304](https://github.com/DanielXMoore/Civet/pull/1304)]
|
|
75
|
+
|
|
76
|
+
## 0.7.14 (2024-07-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.13...v0.7.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.14))
|
|
77
|
+
* Fix some TS errors and increase code coverage [[#1283](https://github.com/DanielXMoore/Civet/pull/1283)]
|
|
78
|
+
* Fix extension for CLI's `--typecheck` [[#1297](https://github.com/DanielXMoore/Civet/pull/1297)]
|
|
79
|
+
* Fix `if` types [[#1298](https://github.com/DanielXMoore/Civet/pull/1298)]
|
|
80
|
+
* Add `class with A, B` mixin notation [[#1299](https://github.com/DanielXMoore/Civet/pull/1299)]
|
|
81
|
+
* Allow `civetConfig` in `package.`[`json`|`yaml`] [[#1300](https://github.com/DanielXMoore/Civet/pull/1300)]
|
|
82
|
+
* Typecheck fixes: JSX default, `tsconfig` errors, `imports` field [[#1302](https://github.com/DanielXMoore/Civet/pull/1302)]
|
|
83
|
+
|
|
84
|
+
## 0.7.13 (2024-06-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.12...v0.7.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.13))
|
|
85
|
+
* Binary op fixes [[#1282](https://github.com/DanielXMoore/Civet/pull/1282)]
|
|
86
|
+
* Fix argument parsing [[#1293](https://github.com/DanielXMoore/Civet/pull/1293)]
|
|
87
|
+
* Cleanup Bun loader code [[#1291](https://github.com/DanielXMoore/Civet/pull/1291)]
|
|
88
|
+
* Self-test to check Civet can build itself [[#1292](https://github.com/DanielXMoore/Civet/pull/1292)]
|
|
89
|
+
* Upgrade TypeScript to 5.5 [[#1294](https://github.com/DanielXMoore/Civet/pull/1294)]
|
|
90
|
+
* MaybeNested expressions [[#1295](https://github.com/DanielXMoore/Civet/pull/1295)]
|
|
91
|
+
|
|
92
|
+
## 0.7.12 (2024-06-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.11...v0.7.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.12))
|
|
93
|
+
* Pipe to dynamic import [[#1275](https://github.com/DanielXMoore/Civet/pull/1275)]
|
|
94
|
+
* Added a cache based on mtime for watch/serve mode in esbuild [[#1276](https://github.com/DanielXMoore/Civet/pull/1276)]
|
|
95
|
+
* Fix async detection in a few cases [[#1278](https://github.com/DanielXMoore/Civet/pull/1278)]
|
|
96
|
+
* Replacing some instances of __ with stricter whitespace checking [[#1279](https://github.com/DanielXMoore/Civet/pull/1279)]
|
|
97
|
+
|
|
98
|
+
## 0.7.11 (2024-05-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.10...v0.7.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.11))
|
|
99
|
+
* Fix source-map-support import with new NodeJS register [[#1265](https://github.com/DanielXMoore/Civet/pull/1265)]
|
|
100
|
+
* Update Civet and use try..else feature [[#1266](https://github.com/DanielXMoore/Civet/pull/1266)]
|
|
101
|
+
* Fix empty block in pattern matching with implicit return [[#1268](https://github.com/DanielXMoore/Civet/pull/1268)]
|
|
102
|
+
* Fix empty then clause in if expressions [[#1269](https://github.com/DanielXMoore/Civet/pull/1269)]
|
|
103
|
+
* Fix hoistDec within if expression [[#1270](https://github.com/DanielXMoore/Civet/pull/1270)]
|
|
104
|
+
* Revamp automatic async and generator, operator support [[#1271](https://github.com/DanielXMoore/Civet/pull/1271)]
|
|
105
|
+
* Sourcemap fix, show diagnostics with nonfatal parse errors [[#1272](https://github.com/DanielXMoore/Civet/pull/1272)]
|
|
106
|
+
|
|
107
|
+
## 0.7.10 (2024-05-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.9...v0.7.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.10))
|
|
108
|
+
* Use {} for empty if and else blocks [[#1245](https://github.com/DanielXMoore/Civet/pull/1245)]
|
|
109
|
+
* Argument magic with `coffeeDo` [[#1246](https://github.com/DanielXMoore/Civet/pull/1246)]
|
|
110
|
+
* Fix source mapping for AtThis identifier (#1250) [[#1252](https://github.com/DanielXMoore/Civet/pull/1252)]
|
|
111
|
+
* Generous matching of --version, --help [[#1259](https://github.com/DanielXMoore/Civet/pull/1259)]
|
|
112
|
+
* Upgrade Playground to modern Prettier [[#1256](https://github.com/DanielXMoore/Civet/pull/1256)]
|
|
113
|
+
* Invalid command-line argument handling [[#1257](https://github.com/DanielXMoore/Civet/pull/1257)]
|
|
114
|
+
* Fix ASI by handling tokens [[#1260](https://github.com/DanielXMoore/Civet/pull/1260)]
|
|
115
|
+
* Fix iteration expression unwrapping in splice assignment [[#1261](https://github.com/DanielXMoore/Civet/pull/1261)]
|
|
116
|
+
* Error nodes, ParseErrors get source-mapped location [[#1262](https://github.com/DanielXMoore/Civet/pull/1262)]
|
|
117
|
+
* Fix complex negative property access [[#1263](https://github.com/DanielXMoore/Civet/pull/1263)]
|
|
118
|
+
|
|
119
|
+
## 0.7.9 (2024-05-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.8...v0.7.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.9))
|
|
120
|
+
* Fix `.#x` [[#1237](https://github.com/DanielXMoore/Civet/pull/1237)]
|
|
121
|
+
* Config file and `parseOptions` support in unplugin, more config filenames, config docs [[#1243](https://github.com/DanielXMoore/Civet/pull/1243)]
|
|
122
|
+
|
|
123
|
+
## 0.7.8 (2024-05-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.7...v0.7.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.8))
|
|
124
|
+
* Allow EmptyStatement in ClassBody [[#1226](https://github.com/DanielXMoore/Civet/pull/1226)]
|
|
125
|
+
* Fix preprocessing of declaration conditions [[#1227](https://github.com/DanielXMoore/Civet/pull/1227)]
|
|
126
|
+
* `try ... else` blocks [[#1229](https://github.com/DanielXMoore/Civet/pull/1229)]
|
|
127
|
+
* Declaration inside unless/until adds declaration after block [[#1228](https://github.com/DanielXMoore/Civet/pull/1228)]
|
|
128
|
+
* Fix duplicate property merging for props not actually bound [[#1232](https://github.com/DanielXMoore/Civet/pull/1232)]
|
|
129
|
+
* Ampersand fixes [[#1233](https://github.com/DanielXMoore/Civet/pull/1233)]
|
|
130
|
+
|
|
131
|
+
## 0.7.7 (2024-05-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.6...v0.7.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.7))
|
|
132
|
+
* Avoid expressionizing statements in fat arrow functions [[#1221](https://github.com/DanielXMoore/Civet/pull/1221)]
|
|
133
|
+
* Use context's globals instead of serializing there [[#1220](https://github.com/DanielXMoore/Civet/pull/1220)]
|
|
134
|
+
* comptime else blocks, else refactor [[#1222](https://github.com/DanielXMoore/Civet/pull/1222)]
|
|
135
|
+
|
|
136
|
+
## 0.7.6 (2024-05-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.5...v0.7.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.6))
|
|
137
|
+
* Avoid implicit return when block guarantees exit [[#1211](https://github.com/DanielXMoore/Civet/pull/1211)]
|
|
138
|
+
* ESLint plugin [[#1205](https://github.com/DanielXMoore/Civet/pull/1205)]
|
|
139
|
+
* Duplicate helpers in comptime blocks [[#1212](https://github.com/DanielXMoore/Civet/pull/1212)]
|
|
140
|
+
* Better require error messages in comptime [[#1214](https://github.com/DanielXMoore/Civet/pull/1214)]
|
|
141
|
+
* CLI avoid errors when output pipe gets closed [[#1213](https://github.com/DanielXMoore/Civet/pull/1213)]
|
|
142
|
+
* Don't emit newlines before block prefixes [[#1216](https://github.com/DanielXMoore/Civet/pull/1216)]
|
|
143
|
+
* `throws` can specify exception; ParseErrors type; bug fixes [[#1217](https://github.com/DanielXMoore/Civet/pull/1217)]
|
|
144
|
+
* eslint: comptime for version, assert instead of with [[#1218](https://github.com/DanielXMoore/Civet/pull/1218)]
|
|
145
|
+
* More comptime [[#1219](https://github.com/DanielXMoore/Civet/pull/1219)]
|
|
146
|
+
|
|
147
|
+
## 0.7.5 (2024-05-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.4...v0.7.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.5))
|
|
148
|
+
* Use `is like` in some cases [[#1208](https://github.com/DanielXMoore/Civet/pull/1208)]
|
|
149
|
+
* Improve log feedback in VSCode plugin [[#1209](https://github.com/DanielXMoore/Civet/pull/1209)]
|
|
150
|
+
* Async compile API with `comptime`, support `require` in `comptime` [[#1186](https://github.com/DanielXMoore/Civet/pull/1186)]
|
|
151
|
+
* Add LSP warning about using dev Civet [[#1210](https://github.com/DanielXMoore/Civet/pull/1210)]
|
|
152
|
+
|
|
153
|
+
## 0.7.4 (2024-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.3...v0.7.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.4))
|
|
154
|
+
* Comptime fixes [[#1204](https://github.com/DanielXMoore/Civet/pull/1204)]
|
|
155
|
+
* Detect Error nodes in inlineMap mode [[#1207](https://github.com/DanielXMoore/Civet/pull/1207)]
|
|
156
|
+
|
|
157
|
+
## 0.7.3 (2024-05-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.2...v0.7.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.3))
|
|
158
|
+
* Fix handling of empty arrays and objects in patterns [[#1202](https://github.com/DanielXMoore/Civet/pull/1202)]
|
|
159
|
+
* `(is like ...)` section, document `is not like` [[#1203](https://github.com/DanielXMoore/Civet/pull/1203)]
|
|
160
|
+
|
|
161
|
+
## 0.7.2 (2024-04-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.1...v0.7.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.2))
|
|
162
|
+
* First version of comptime (synchronous, no outer scope) [[#1180](https://github.com/DanielXMoore/Civet/pull/1180)]
|
|
163
|
+
* Faster and robust config searching via `readdir` instead of `opendir` [[#1183](https://github.com/DanielXMoore/Civet/pull/1183)]
|
|
164
|
+
* Insert "function" into ES6 methods [[#1184](https://github.com/DanielXMoore/Civet/pull/1184)]
|
|
165
|
+
* Allow empty body in loops, if/else, do, comptime [[#1187](https://github.com/DanielXMoore/Civet/pull/1187)]
|
|
166
|
+
* Fix comptime negative zero [[#1190](https://github.com/DanielXMoore/Civet/pull/1190)]
|
|
167
|
+
* Serialize typed arrays and well-known symbols [[#1188](https://github.com/DanielXMoore/Civet/pull/1188)]
|
|
168
|
+
* Comptime `Object.create null` [[#1192](https://github.com/DanielXMoore/Civet/pull/1192)]
|
|
169
|
+
* Comptime classes and generators [[#1194](https://github.com/DanielXMoore/Civet/pull/1194)]
|
|
170
|
+
* Comptime function properties [[#1196](https://github.com/DanielXMoore/Civet/pull/1196)]
|
|
171
|
+
* Comptime URLs [[#1197](https://github.com/DanielXMoore/Civet/pull/1197)]
|
|
172
|
+
* Handle property descriptors (incl. getters/setters) in comptime [[#1198](https://github.com/DanielXMoore/Civet/pull/1198)]
|
|
173
|
+
* "is like" pattern matching operator [[#1199](https://github.com/DanielXMoore/Civet/pull/1199)]
|
|
174
|
+
* Optional ?:: for coffeePrototype [[#1193](https://github.com/DanielXMoore/Civet/pull/1193)]
|
|
175
|
+
* Pattern matching fixes [[#1200](https://github.com/DanielXMoore/Civet/pull/1200)]
|
|
176
|
+
|
|
177
|
+
## 0.7.1 (2024-04-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.0...v0.7.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.1))
|
|
178
|
+
* Assignment operator sections [[#1174](https://github.com/DanielXMoore/Civet/pull/1174)]
|
|
179
|
+
* Fix & in applied (operator) [[#1175](https://github.com/DanielXMoore/Civet/pull/1175)]
|
|
180
|
+
* Upgrade CI to Node.js 20 [[#1178](https://github.com/DanielXMoore/Civet/pull/1178)]
|
|
181
|
+
* Limit & to return/yield; support indented yield argument [[#1177](https://github.com/DanielXMoore/Civet/pull/1177)]
|
|
182
|
+
* Brace block improvements, including `&` statements [[#1179](https://github.com/DanielXMoore/Civet/pull/1179)]
|
|
183
|
+
|
|
184
|
+
## 0.7.0 (2024-04-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.93...v0.7.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.0))
|
|
185
|
+
* New ampersand proposal (#1070) [[#1159](https://github.com/DanielXMoore/Civet/pull/1159)]
|
|
186
|
+
|
|
187
|
+
## 0.6.93 (2024-04-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.92...v0.6.93), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.93))
|
|
188
|
+
* Fix #1155 by consolidating trailing member access [[#1163](https://github.com/DanielXMoore/Civet/pull/1163)]
|
|
189
|
+
* Remove old experimental coffee2civet and add bun-civet to ignored coverage [[#1164](https://github.com/DanielXMoore/Civet/pull/1164)]
|
|
190
|
+
* `::#` type with `coffeePrototype` [[#1166](https://github.com/DanielXMoore/Civet/pull/1166)]
|
|
191
|
+
* Infinite loop detection and no return [[#1165](https://github.com/DanielXMoore/Civet/pull/1165)]
|
|
192
|
+
* Pipe assignment to index [[#1167](https://github.com/DanielXMoore/Civet/pull/1167)]
|
|
193
|
+
* Improve ASI algorithm [[#1170](https://github.com/DanielXMoore/Civet/pull/1170)]
|
|
194
|
+
* Keep `new` inside partial function [[#1171](https://github.com/DanielXMoore/Civet/pull/1171)]
|
|
195
|
+
|
|
196
|
+
## 0.6.92 (2024-04-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.91...v0.6.92), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.92))
|
|
197
|
+
* Simplify quoteString for code coverage [[#1156](https://github.com/DanielXMoore/Civet/pull/1156)]
|
|
198
|
+
* Fix unary negated literal with unary post [[#1154](https://github.com/DanielXMoore/Civet/pull/1154)]
|
|
199
|
+
* Preserve Vite's default extensions [[#1157](https://github.com/DanielXMoore/Civet/pull/1157)]
|
|
200
|
+
|
|
201
|
+
## 0.6.91 (2024-04-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.90...v0.6.91), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.91))
|
|
202
|
+
* Late arrow functions like late assignments [[#1142](https://github.com/DanielXMoore/Civet/pull/1142)]
|
|
203
|
+
* Fix ASI bug caused by unstructured blockPrefix [[#1143](https://github.com/DanielXMoore/Civet/pull/1143)]
|
|
204
|
+
* Add missing unary numeric and undefined pin patterns in `switch` (#1043) [[#1144](https://github.com/DanielXMoore/Civet/pull/1144)]
|
|
205
|
+
* Fix relational chains [[#1146](https://github.com/DanielXMoore/Civet/pull/1146)]
|
|
206
|
+
* Infinite range `[x..]` [[#1148](https://github.com/DanielXMoore/Civet/pull/1148)]
|
|
207
|
+
* Partial application placeholders [[#1151](https://github.com/DanielXMoore/Civet/pull/1151)]
|
|
208
|
+
* Astro integration based on Vite plugin [[#1153](https://github.com/DanielXMoore/Civet/pull/1153)]
|
|
209
|
+
|
|
210
|
+
## 0.6.90 (2024-04-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.89...v0.6.90), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.90))
|
|
211
|
+
* Don't treat double colon as colon [[#1136](https://github.com/DanielXMoore/Civet/pull/1136)]
|
|
212
|
+
* Optional dot before `#` [[#1137](https://github.com/DanielXMoore/Civet/pull/1137)]
|
|
213
|
+
* Prevent `...` as array element in right-hand side [[#1138](https://github.com/DanielXMoore/Civet/pull/1138)]
|
|
214
|
+
* Missing insert return after pattern matching statement [[#1141](https://github.com/DanielXMoore/Civet/pull/1141)]
|
|
215
|
+
* Nonnull checks in assignment conditions [[#1140](https://github.com/DanielXMoore/Civet/pull/1140)]
|
|
216
|
+
|
|
217
|
+
## 0.6.89 (2024-04-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.88...v0.6.89), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.89))
|
|
218
|
+
* Hoist declarations out of async wrapper and other cleanup [[#1133](https://github.com/DanielXMoore/Civet/pull/1133)]
|
|
219
|
+
|
|
220
|
+
## 0.6.88 (2024-03-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.87...v0.6.88), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.88))
|
|
221
|
+
* Modern NodeJS register and CLI require/import fixes [[#1128](https://github.com/DanielXMoore/Civet/pull/1128)]
|
|
222
|
+
* Dynamic import declarations and expressions [[#1130](https://github.com/DanielXMoore/Civet/pull/1130)]
|
|
223
|
+
|
|
224
|
+
## 0.6.87 (2024-03-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.86...v0.6.87), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.87))
|
|
225
|
+
* Signed number literal types, including dropping + [[#1119](https://github.com/DanielXMoore/Civet/pull/1119)]
|
|
226
|
+
* TS override support [[#1120](https://github.com/DanielXMoore/Civet/pull/1120)]
|
|
227
|
+
* Fix #54 - Optional chain in assignment lhs [[#1117](https://github.com/DanielXMoore/Civet/pull/1117)]
|
|
228
|
+
|
|
229
|
+
## 0.6.86 (2024-03-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.85...v0.6.86), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.86))
|
|
230
|
+
* Fix #1102 - negative index assignment lhs [[#1109](https://github.com/DanielXMoore/Civet/pull/1109)]
|
|
231
|
+
* Fix #1101 - reserved word object globs [[#1111](https://github.com/DanielXMoore/Civet/pull/1111)]
|
|
232
|
+
|
|
233
|
+
## 0.6.85 (2024-03-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.84...v0.6.85), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.85))
|
|
234
|
+
* Fix #1098 - if containing for IIFE [[#1103](https://github.com/DanielXMoore/Civet/pull/1103)]
|
|
235
|
+
* Fix #1096; Fix #1105; Special operators in assignment rhs [[#1106](https://github.com/DanielXMoore/Civet/pull/1106)]
|
|
236
|
+
* Fix #1100 - pipe inside StatementExpression [[#1104](https://github.com/DanielXMoore/Civet/pull/1104)]
|
|
237
|
+
* Fix #1107 - pipe to as in JS mode [[#1108](https://github.com/DanielXMoore/Civet/pull/1108)]
|
|
238
|
+
|
|
239
|
+
## 0.6.84 (2024-03-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.83...v0.6.84), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.84))
|
|
240
|
+
* Pattern matching array length type guard (#1075) [[#1089](https://github.com/DanielXMoore/Civet/pull/1089)]
|
|
241
|
+
* Fix `get #` (#1087) [[#1088](https://github.com/DanielXMoore/Civet/pull/1088)]
|
|
242
|
+
* `export from` type attributes (#1091) [[#1093](https://github.com/DanielXMoore/Civet/pull/1093)]
|
|
243
|
+
* RestoreAll within template substitution / CoffeeScript interpolation [[#1095](https://github.com/DanielXMoore/Civet/pull/1095)]
|
|
244
|
+
* For loop over character range (#1097) [[#1099](https://github.com/DanielXMoore/Civet/pull/1099)]
|
|
245
|
+
|
|
246
|
+
## 0.6.83 (2024-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.82...v0.6.83), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.83))
|
|
247
|
+
* Pipe to unary word ops; await ops (#1065) [[#1069](https://github.com/DanielXMoore/Civet/pull/1069)]
|
|
248
|
+
* Strings at start of file followed by pipe or access are not prologues [[#1068](https://github.com/DanielXMoore/Civet/pull/1068)]
|
|
249
|
+
* Sourcemap improvement [[#1067](https://github.com/DanielXMoore/Civet/pull/1067)]
|
|
250
|
+
* Semicolon before `return.value` when piping (#1048) [[#1071](https://github.com/DanielXMoore/Civet/pull/1071)]
|
|
251
|
+
* Added comment to forwardMap [[#1073](https://github.com/DanielXMoore/Civet/pull/1073)]
|
|
252
|
+
* Eliminate dead code [[#1072](https://github.com/DanielXMoore/Civet/pull/1072)]
|
|
253
|
+
* Don't wrap StatementExpressions in IIFE in declaration (#202) [[#1074](https://github.com/DanielXMoore/Civet/pull/1074)]
|
|
254
|
+
* Added support for nested statement expressions [[#1076](https://github.com/DanielXMoore/Civet/pull/1076)]
|
|
255
|
+
* Statement expressions [[#1077](https://github.com/DanielXMoore/Civet/pull/1077)]
|
|
256
|
+
|
|
257
|
+
## 0.6.82 (2024-02-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.81...v0.6.82), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.82))
|
|
258
|
+
* Improve forward source mapping, fix `if const` tooltips (#1053) [[#1059](https://github.com/DanielXMoore/Civet/pull/1059)]
|
|
259
|
+
* Fix Playground around top-level await [[#1060](https://github.com/DanielXMoore/Civet/pull/1060)]
|
|
260
|
+
* Fix `async` iteration expressions (#1058) caused by performance opt [[#1063](https://github.com/DanielXMoore/Civet/pull/1063)]
|
|
261
|
+
* Add `#` length shorthand #909 [[#1062](https://github.com/DanielXMoore/Civet/pull/1062)]
|
|
262
|
+
* Allow arguments to property bind [[#1064](https://github.com/DanielXMoore/Civet/pull/1064)]
|
|
263
|
+
* Add `as tuple` [[#1066](https://github.com/DanielXMoore/Civet/pull/1066)]
|
|
264
|
+
|
|
265
|
+
## 0.6.81 (2024-02-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.80...v0.6.81), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.81))
|
|
266
|
+
* Force emitting dts files in unplugin [[#1055](https://github.com/DanielXMoore/Civet/pull/1055)]
|
|
267
|
+
* Tell Vite virtual module during dependency scanning [[#1056](https://github.com/DanielXMoore/Civet/pull/1056)]
|
|
268
|
+
|
|
269
|
+
## 0.6.80 (2024-02-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.79...v0.6.80), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.80))
|
|
270
|
+
* Properly escape newlines in multi-line strings (#1047) [[#1049](https://github.com/DanielXMoore/Civet/pull/1049)]
|
|
271
|
+
* Typechecking allows for extra dependencies beyond build [[#1052](https://github.com/DanielXMoore/Civet/pull/1052)]
|
|
272
|
+
* Suppress ESLint `no-cond-assign` with `if const` etc [[#1051](https://github.com/DanielXMoore/Civet/pull/1051)]
|
|
273
|
+
* Add esbuild unplugin to Vite's optimizeDeps [[#1054](https://github.com/DanielXMoore/Civet/pull/1054)]
|
|
274
|
+
|
|
275
|
+
## 0.6.79 (2024-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.78...v0.6.79), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.79))
|
|
276
|
+
* Snapshots similar to how Vue language tools does [[#1042](https://github.com/DanielXMoore/Civet/pull/1042)]
|
|
277
|
+
* log diagnostics timing [[#1045](https://github.com/DanielXMoore/Civet/pull/1045)]
|
|
278
|
+
* Non-transpiled files weren't being added to the path map causing them… [[#1044](https://github.com/DanielXMoore/Civet/pull/1044)]
|
|
279
|
+
* Don't relativize paths in unplugin [[#1046](https://github.com/DanielXMoore/Civet/pull/1046)]
|
|
280
|
+
|
|
281
|
+
## 0.6.78 (2024-02-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.77...v0.6.78), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.78))
|
|
282
|
+
* Avoid double semicolon in then clause [[#1041](https://github.com/DanielXMoore/Civet/pull/1041)]
|
|
283
|
+
|
|
284
|
+
## 0.6.77 (2024-02-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.76...v0.6.77), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.77))
|
|
285
|
+
* ignore coverage for parser/types.civet [[#1032](https://github.com/DanielXMoore/Civet/pull/1032)]
|
|
286
|
+
* Working towards discriminated union for nodes and type predicates for traversal [[#1033](https://github.com/DanielXMoore/Civet/pull/1033)]
|
|
287
|
+
* Automatic TS jsx setting in unplugin and CLI [[#1039](https://github.com/DanielXMoore/Civet/pull/1039)]
|
|
288
|
+
* More custom operator precedence [[#1038](https://github.com/DanielXMoore/Civet/pull/1038)]
|
|
289
|
+
|
|
290
|
+
## 0.6.76 (2024-02-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.75...v0.6.76), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.76))
|
|
291
|
+
* Split lib.civet into many files [[#1026](https://github.com/DanielXMoore/Civet/pull/1026)]
|
|
292
|
+
* Fix CLI typecheck import mapping [[#1030](https://github.com/DanielXMoore/Civet/pull/1030)]
|
|
293
|
+
* xor precedence above || [[#1029](https://github.com/DanielXMoore/Civet/pull/1029)]
|
|
294
|
+
* Custom operator precedence [[#1031](https://github.com/DanielXMoore/Civet/pull/1031)]
|
|
295
|
+
|
|
296
|
+
## 0.6.75 (2024-02-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.74...v0.6.75), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.75))
|
|
297
|
+
* Typechecking CLI [[#1023](https://github.com/DanielXMoore/Civet/pull/1023)]
|
|
298
|
+
* Fix #900 - Declaration condition in switch statements w/ nested binop [[#1024](https://github.com/DanielXMoore/Civet/pull/1024)]
|
|
299
|
+
* Made some more progress on internal typings [[#1025](https://github.com/DanielXMoore/Civet/pull/1025)]
|
|
300
|
+
* Cleanup non-null assertion handling [[#1027](https://github.com/DanielXMoore/Civet/pull/1027)]
|
|
301
|
+
|
|
302
|
+
## 0.6.74 (2024-02-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.73...v0.6.74), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.74))
|
|
303
|
+
* Pipe new [[#1008](https://github.com/DanielXMoore/Civet/pull/1008)]
|
|
304
|
+
* Fix #947 - Better const function semantics [[#1009](https://github.com/DanielXMoore/Civet/pull/1009)]
|
|
305
|
+
* Fix hasProp type [[#1011](https://github.com/DanielXMoore/Civet/pull/1011)]
|
|
306
|
+
* Unary prefix and postfix in braced literal shorthand [[#1014](https://github.com/DanielXMoore/Civet/pull/1014)]
|
|
307
|
+
* Support extends shorthand in type parameters [[#1015](https://github.com/DanielXMoore/Civet/pull/1015)]
|
|
308
|
+
* Add type assignment shorthand [[#1018](https://github.com/DanielXMoore/Civet/pull/1018)]
|
|
309
|
+
* Recognize indentation of type alias [[#1019](https://github.com/DanielXMoore/Civet/pull/1019)]
|
|
310
|
+
* Fix #1002 - Allow postfix loops, etc. in declarations [[#1017](https://github.com/DanielXMoore/Civet/pull/1017)]
|
|
311
|
+
* Fix #998 - Properly handle void async generators and iterators [[#1020](https://github.com/DanielXMoore/Civet/pull/1020)]
|
|
312
|
+
* Fix #959 - Don't duplicate comments when hoisting refs [[#1022](https://github.com/DanielXMoore/Civet/pull/1022)]
|
|
313
|
+
|
|
314
|
+
## 0.6.73 (2024-02-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.72...v0.6.73), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.73))
|
|
315
|
+
* Fix triple slash in pattern matching switch [[#991](https://github.com/DanielXMoore/Civet/pull/991)]
|
|
316
|
+
* Report error nodes in LSP [[#992](https://github.com/DanielXMoore/Civet/pull/992)]
|
|
317
|
+
* Update code around pattern matching to civet style [[#993](https://github.com/DanielXMoore/Civet/pull/993)]
|
|
318
|
+
* Consistent arrow vs. pipe precedence [[#994](https://github.com/DanielXMoore/Civet/pull/994)]
|
|
319
|
+
* Avoid implicit returns from fat arrows [[#996](https://github.com/DanielXMoore/Civet/pull/996)]
|
|
320
|
+
* Allow multiple props per line in implicit object literals [[#997](https://github.com/DanielXMoore/Civet/pull/997)]
|
|
321
|
+
* Don't create empty var decs with auto-var [[#1000](https://github.com/DanielXMoore/Civet/pull/1000)]
|
|
322
|
+
* Fix cached node mutation when removing trailing comma from rest property [[#1001](https://github.com/DanielXMoore/Civet/pull/1001)]
|
|
323
|
+
|
|
324
|
+
## 0.6.72 (2024-02-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.71...v0.6.72), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.72))
|
|
325
|
+
* Fix private field glob getters [[#977](https://github.com/DanielXMoore/Civet/pull/977)]
|
|
326
|
+
* Fix spread bug extracted from lib.civet [[#982](https://github.com/DanielXMoore/Civet/pull/982)]
|
|
327
|
+
* export default shorthand [[#981](https://github.com/DanielXMoore/Civet/pull/981)]
|
|
328
|
+
* perf-compare improvements [[#983](https://github.com/DanielXMoore/Civet/pull/983)]
|
|
329
|
+
* Allow enums on one line [[#980](https://github.com/DanielXMoore/Civet/pull/980)]
|
|
330
|
+
* Fix TS infer, extends, typeof [[#986](https://github.com/DanielXMoore/Civet/pull/986)]
|
|
331
|
+
* Support "Error" nodes in Playground [[#987](https://github.com/DanielXMoore/Civet/pull/987)]
|
|
332
|
+
|
|
333
|
+
## 0.6.71 (2024-02-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.70...v0.6.71), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.71))
|
|
334
|
+
* Typed ampersand function improvements [[#969](https://github.com/DanielXMoore/Civet/pull/969)]
|
|
335
|
+
* Fix concatAssign for arrays [[#972](https://github.com/DanielXMoore/Civet/pull/972)]
|
|
336
|
+
* TypeScript's `import ... = require(...)` and `export = ...` [[#975](https://github.com/DanielXMoore/Civet/pull/975)]
|
|
337
|
+
* CLI import rewriting, --civet option, cleanup [[#974](https://github.com/DanielXMoore/Civet/pull/974)]
|
|
338
|
+
* Nested vs. implicit vs. inline object literals [[#976](https://github.com/DanielXMoore/Civet/pull/976)]
|
|
339
|
+
|
|
340
|
+
## 0.6.70 (2024-02-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.69...v0.6.70), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.70))
|
|
341
|
+
* Port CLI to more modern Civet [[#950](https://github.com/DanielXMoore/Civet/pull/950)]
|
|
342
|
+
* Fix ASI with one-argument (+) application [[#960](https://github.com/DanielXMoore/Civet/pull/960)]
|
|
343
|
+
* Allow return.value in pipeline [[#961](https://github.com/DanielXMoore/Civet/pull/961)]
|
|
344
|
+
* Allow return type annotation in getter shorthand [[#962](https://github.com/DanielXMoore/Civet/pull/962)]
|
|
345
|
+
* Fix object getters with globs [[#964](https://github.com/DanielXMoore/Civet/pull/964)]
|
|
346
|
+
|
|
347
|
+
## 0.6.69 (2024-02-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.68...v0.6.69), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.69))
|
|
348
|
+
* Operators as functions via parens [[#948](https://github.com/DanielXMoore/Civet/pull/948)]
|
|
349
|
+
* Add em dash for decrement [[#953](https://github.com/DanielXMoore/Civet/pull/953)]
|
|
350
|
+
* Cleanup Call arguments AST, fix (+) processing [[#955](https://github.com/DanielXMoore/Civet/pull/955)]
|
|
351
|
+
|
|
352
|
+
## 0.6.68 (2024-02-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.67...v0.6.68), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.68))
|
|
353
|
+
* Test validity of JS/TS outputs via esbuild parsing [[#932](https://github.com/DanielXMoore/Civet/pull/932)]
|
|
354
|
+
* Shorthand for type indexed access [[#945](https://github.com/DanielXMoore/Civet/pull/945)]
|
|
355
|
+
* `!op` shorthand for `not op` [[#946](https://github.com/DanielXMoore/Civet/pull/946)]
|
|
356
|
+
|
|
357
|
+
## 0.6.67 (2024-02-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.66...v0.6.67), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.67))
|
|
358
|
+
* Support TS instantiation expressions [[#940](https://github.com/DanielXMoore/Civet/pull/940)]
|
|
359
|
+
* Hera ESM support [[#942](https://github.com/DanielXMoore/Civet/pull/942)]
|
|
360
|
+
* Playground eval [[#941](https://github.com/DanielXMoore/Civet/pull/941)]
|
|
361
|
+
|
|
362
|
+
## 0.6.66 (2024-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.65...v0.6.66), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.66))
|
|
363
|
+
* TS typeof allow for arbitrary expressions, not just types [[#935](https://github.com/DanielXMoore/Civet/pull/935)]
|
|
364
|
+
* Fix ASI with pipes [[#937](https://github.com/DanielXMoore/Civet/pull/937)]
|
|
365
|
+
* Fix array of objects type [[#936](https://github.com/DanielXMoore/Civet/pull/936)]
|
|
366
|
+
|
|
367
|
+
## 0.6.65 (2024-01-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.64...v0.6.65), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.65))
|
|
368
|
+
* Fix optional property access shorthand [[#931](https://github.com/DanielXMoore/Civet/pull/931)]
|
|
369
|
+
|
|
370
|
+
## 0.6.64 (2024-01-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.63...v0.6.64), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.64))
|
|
371
|
+
* Fail on TypeScript errors, or specified types [[#928](https://github.com/DanielXMoore/Civet/pull/928)]
|
|
372
|
+
|
|
373
|
+
## 0.6.63 (2024-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.62...v0.6.63), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.63))
|
|
374
|
+
* Wrap thick pipes in parens [[#916](https://github.com/DanielXMoore/Civet/pull/916)]
|
|
375
|
+
* Support TypeScript `paths` alias [[#921](https://github.com/DanielXMoore/Civet/pull/921)]
|
|
376
|
+
* LSP support importing directories with index.civet [[#923](https://github.com/DanielXMoore/Civet/pull/923)]
|
|
377
|
+
* LSP pass on more completion info [[#924](https://github.com/DanielXMoore/Civet/pull/924)]
|
|
378
|
+
* Fix ts: 'tsc' behavior around sourcemaps [[#926](https://github.com/DanielXMoore/Civet/pull/926)]
|
|
379
|
+
* Use .tsx extension for TypeScript type checking [[#927](https://github.com/DanielXMoore/Civet/pull/927)]
|
|
380
|
+
|
|
381
|
+
## 0.6.62 (2024-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.61...v0.6.62), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.62))
|
|
382
|
+
* as! T [[#896](https://github.com/DanielXMoore/Civet/pull/896)]
|
|
383
|
+
* ++ concat operator [[#898](https://github.com/DanielXMoore/Civet/pull/898)]
|
|
384
|
+
* ++= concat assignment [[#899](https://github.com/DanielXMoore/Civet/pull/899)]
|
|
385
|
+
* Optional let declarations [[#902](https://github.com/DanielXMoore/Civet/pull/902)]
|
|
386
|
+
* Optional function return types [[#904](https://github.com/DanielXMoore/Civet/pull/904)]
|
|
387
|
+
* Conditional types via if/unless [[#905](https://github.com/DanielXMoore/Civet/pull/905)]
|
|
388
|
+
* `T?` → `T | undefined`; `T??` → `T | undefined | null` [[#908](https://github.com/DanielXMoore/Civet/pull/908)]
|
|
389
|
+
* Extends shorthand `<` and negated forms [[#907](https://github.com/DanielXMoore/Civet/pull/907)]
|
|
390
|
+
* Added (+) binary op to function shorthand [[#912](https://github.com/DanielXMoore/Civet/pull/912)]
|
|
391
|
+
* `(foo)` for custom operators `foo` [[#914](https://github.com/DanielXMoore/Civet/pull/914)]
|
|
392
|
+
|
|
393
|
+
## 0.6.61 (2023-12-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.60...v0.6.61), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.61))
|
|
394
|
+
* Fix unplugin emitDeclaration and Windows behavior [[#895](https://github.com/DanielXMoore/Civet/pull/895)]
|
|
395
|
+
|
|
396
|
+
## 0.6.60 (2023-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.59...v0.6.60), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.60))
|
|
397
|
+
* Use .-1 notation in Civet source [[#879](https://github.com/DanielXMoore/Civet/pull/879)]
|
|
398
|
+
* Update font; tagline [[#880](https://github.com/DanielXMoore/Civet/pull/880)]
|
|
399
|
+
* docs: Revise tagline, opening paragraph, and purple [[#882](https://github.com/DanielXMoore/Civet/pull/882)]
|
|
400
|
+
* Allow arbitrary unary operators before ampersand function notation [[#883](https://github.com/DanielXMoore/Civet/pull/883)]
|
|
401
|
+
* `[a ... b]` is a range, `[a ...b]` is implicit call [[#884](https://github.com/DanielXMoore/Civet/pull/884)]
|
|
402
|
+
* Stricter unary operators (before &) [[#886](https://github.com/DanielXMoore/Civet/pull/886)]
|
|
403
|
+
* Fix ASI before ranges [[#890](https://github.com/DanielXMoore/Civet/pull/890)]
|
|
404
|
+
|
|
405
|
+
## 0.6.59 (2023-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.58...v0.6.59), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.59))
|
|
406
|
+
* Update docs style [[#871](https://github.com/DanielXMoore/Civet/pull/871)]
|
|
407
|
+
* Color tweaks to improve contrast [[#874](https://github.com/DanielXMoore/Civet/pull/874)]
|
|
408
|
+
* Fix while(cond) without space [[#875](https://github.com/DanielXMoore/Civet/pull/875)]
|
|
409
|
+
* Omit obviously unreachable breaks from switch [[#876](https://github.com/DanielXMoore/Civet/pull/876)]
|
|
410
|
+
* Support x?.-1 and other optional fancy accesses [[#877](https://github.com/DanielXMoore/Civet/pull/877)]
|
|
411
|
+
* svg backgrounds [[#878](https://github.com/DanielXMoore/Civet/pull/878)]
|
|
412
|
+
|
|
413
|
+
## 0.6.58 (2023-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.57...v0.6.58), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.58))
|
|
414
|
+
* Fix implicit generators in assigned -> functions [[#865](https://github.com/DanielXMoore/Civet/pull/865)]
|
|
415
|
+
* Omit return with Iterator/Generator<*, void> type [[#866](https://github.com/DanielXMoore/Civet/pull/866)]
|
|
416
|
+
* Handle labeled loops [[#867](https://github.com/DanielXMoore/Civet/pull/867)]
|
|
417
|
+
* Add angle brackets to surroundingPairs [[#868](https://github.com/DanielXMoore/Civet/pull/868)]
|
|
418
|
+
|
|
419
|
+
## 0.6.57 (2023-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.56...v0.6.57), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.57))
|
|
420
|
+
* handleHotUpdate to fix Vite HMR (watch in dev mode) [[#860](https://github.com/DanielXMoore/Civet/pull/860)]
|
|
421
|
+
* Support implicit .civet importing unless implicitExtension: false [[#859](https://github.com/DanielXMoore/Civet/pull/859)]
|
|
422
|
+
|
|
423
|
+
## 0.6.56 (2023-12-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.55...v0.6.56), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.56))
|
|
424
|
+
* Fix #833: Add newline after trailing comment in implicit braced blocks [[#851](https://github.com/DanielXMoore/Civet/pull/851)]
|
|
425
|
+
* Fix #853: catch clause with extra space [[#856](https://github.com/DanielXMoore/Civet/pull/856)]
|
|
426
|
+
* Fix #850: Wrap parens around thick pipes with refs in declarations [[#855](https://github.com/DanielXMoore/Civet/pull/855)]
|
|
427
|
+
* Fix sourcemap issue in unplugin (#846) [[#857](https://github.com/DanielXMoore/Civet/pull/857)]
|
|
428
|
+
|
|
429
|
+
## 0.6.55 (2023-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.54...v0.6.55), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.55))
|
|
430
|
+
* Add bracket/comments matching to vscode plugin [[#835](https://github.com/DanielXMoore/Civet/pull/835)]
|
|
431
|
+
* Allow multiple patterns over multiple lines with comma [[#838](https://github.com/DanielXMoore/Civet/pull/838)]
|
|
432
|
+
* Fix #839: for each of declaration with auto-let [[#841](https://github.com/DanielXMoore/Civet/pull/841)]
|
|
433
|
+
* Import attributes [[#848](https://github.com/DanielXMoore/Civet/pull/848)]
|
|
434
|
+
* Fix special relational operator precedence [[#843](https://github.com/DanielXMoore/Civet/pull/843)]
|
|
435
|
+
|
|
436
|
+
## 0.6.54 (2023-12-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.53...v0.6.54), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.54))
|
|
437
|
+
* Generalize pin expressions to allow x.y and ^x.y [[#834](https://github.com/DanielXMoore/Civet/pull/834)]
|
|
438
|
+
|
|
439
|
+
## 0.6.53 (2023-12-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.52...v0.6.53), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.53))
|
|
440
|
+
* Fix unplugin Typescript builds and update API [[#810](https://github.com/DanielXMoore/Civet/pull/810)]
|
|
441
|
+
* Fix snug `x<y` [[#830](https://github.com/DanielXMoore/Civet/pull/830)]
|
|
442
|
+
* Fix #72. Reset service when tsconfig changes [[#807](https://github.com/DanielXMoore/Civet/pull/807)]
|
|
443
|
+
|
|
444
|
+
## 0.6.52 (2023-11-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.51...v0.6.52), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.52))
|
|
445
|
+
* Fix Promise<void> in non-async function [[#815](https://github.com/DanielXMoore/Civet/pull/815)]
|
|
446
|
+
* Indented function parameters [[#816](https://github.com/DanielXMoore/Civet/pull/816)]
|
|
447
|
+
* Assignments in & functions [[#817](https://github.com/DanielXMoore/Civet/pull/817)]
|
|
448
|
+
* Type arguments in template literals [[#820](https://github.com/DanielXMoore/Civet/pull/820)]
|
|
449
|
+
|
|
450
|
+
## 0.6.51 (2023-11-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.50...v0.6.51), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.51))
|
|
451
|
+
* Check for existence of absolute path in unplugin [[#797](https://github.com/DanielXMoore/Civet/pull/797)]
|
|
452
|
+
* Added references to lsp [[#801](https://github.com/DanielXMoore/Civet/pull/801)]
|
|
453
|
+
* Update xor typing [[#799](https://github.com/DanielXMoore/Civet/pull/799)]
|
|
454
|
+
* Fix #705 [[#802](https://github.com/DanielXMoore/Civet/pull/802)]
|
|
455
|
+
|
|
456
|
+
## 0.6.50 (2023-11-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.49...v0.6.50), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.50))
|
|
457
|
+
* Forbid comma operator in one-line thin arrow functions [[#795](https://github.com/DanielXMoore/Civet/pull/795)]
|
|
458
|
+
* Fix #704; better open paren whitespace handling in type declarations [[#796](https://github.com/DanielXMoore/Civet/pull/796)]
|
|
459
|
+
|
|
460
|
+
## 0.6.49 (2023-11-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.48...v0.6.49), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.49))
|
|
461
|
+
* Fix #792: TryExpression in conditional declaration [[#793](https://github.com/DanielXMoore/Civet/pull/793)]
|
|
462
|
+
* Update more parent pointers along the way [[#794](https://github.com/DanielXMoore/Civet/pull/794)]
|
|
463
|
+
|
|
464
|
+
## 0.6.48 (2023-10-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.47...v0.6.48), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.48))
|
|
465
|
+
* unplugin calls addWatchFile [[#780](https://github.com/DanielXMoore/Civet/pull/780)]
|
|
466
|
+
* Simpler implementation of comments near Civet directives [[#790](https://github.com/DanielXMoore/Civet/pull/790)]
|
|
467
|
+
* Allow -.1 as decimal literal [[#788](https://github.com/DanielXMoore/Civet/pull/788)]
|
|
468
|
+
|
|
469
|
+
## 0.6.47 (2023-10-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.46...v0.6.47), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.47))
|
|
470
|
+
* Allow comments near Civet directives [[#783](https://github.com/DanielXMoore/Civet/pull/783)]
|
|
471
|
+
* Fix unplugin path resolution (#774) [[#786](https://github.com/DanielXMoore/Civet/pull/786)]
|
|
472
|
+
* Transform Vite HTML imports for Civet [[#785](https://github.com/DanielXMoore/Civet/pull/785)]
|
|
473
|
+
|
|
474
|
+
## 0.6.46 (2023-10-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.45...v0.6.46), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.46))
|
|
475
|
+
* unplugin transformInclude to avoid transforming unrelated files [[#784](https://github.com/DanielXMoore/Civet/pull/784)]
|
|
476
|
+
|
|
477
|
+
## 0.6.45 (2023-10-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.44...v0.6.45), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.45))
|
|
478
|
+
|
|
479
|
+
## 0.6.44 (2023-10-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.43...v0.6.44), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.44))
|
|
480
|
+
* Perf4 [[#772](https://github.com/DanielXMoore/Civet/pull/772)]
|
|
481
|
+
* Fix #755: ampersand blocks with coffee compat [[#777](https://github.com/DanielXMoore/Civet/pull/777)]
|
|
482
|
+
* Default type for `return` declaration [[#778](https://github.com/DanielXMoore/Civet/pull/778)]
|
|
483
|
+
* Fix #643 [[#781](https://github.com/DanielXMoore/Civet/pull/781)]
|
|
484
|
+
|
|
485
|
+
## 0.6.43 (2023-10-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.42...v0.6.43), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.43))
|
|
486
|
+
* fixed line continuation edge case [[#768](https://github.com/DanielXMoore/Civet/pull/768)]
|
|
487
|
+
* refactor property access patterns; 0.7% perf improvement [[#770](https://github.com/DanielXMoore/Civet/pull/770)]
|
|
488
|
+
* Perf3 [[#771](https://github.com/DanielXMoore/Civet/pull/771)]
|
|
489
|
+
|
|
490
|
+
## 0.6.42 (2023-10-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.41...v0.6.42), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.42))
|
|
491
|
+
* Allow newline before ...rest parameter [[#761](https://github.com/DanielXMoore/Civet/pull/761)]
|
|
492
|
+
* Parenthesize if expressions, remove other excess parens [[#762](https://github.com/DanielXMoore/Civet/pull/762)]
|
|
493
|
+
* ~10% perf boost by adding some short circuit assertions [[#764](https://github.com/DanielXMoore/Civet/pull/764)]
|
|
494
|
+
* Make ts-diagnostic.civet independent of vscode dependencies [[#766](https://github.com/DanielXMoore/Civet/pull/766)]
|
|
495
|
+
|
|
496
|
+
## 0.6.41 (2023-09-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.40...v0.6.41), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.41))
|
|
497
|
+
|
|
498
|
+
## 0.6.40 (2023-09-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.39...v0.6.40), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.40))
|
|
499
|
+
* Fix #715; Parens around update assignments [[#748](https://github.com/DanielXMoore/Civet/pull/748)]
|
|
500
|
+
* Mild opt [[#749](https://github.com/DanielXMoore/Civet/pull/749)]
|
|
501
|
+
* Fix indexOf type signature [[#752](https://github.com/DanielXMoore/Civet/pull/752)]
|
|
502
|
+
* Support comments before directives [[#754](https://github.com/DanielXMoore/Civet/pull/754)]
|
|
503
|
+
* Remove common indentation of triple quotes [[#758](https://github.com/DanielXMoore/Civet/pull/758)]
|
|
504
|
+
|
|
505
|
+
## 0.6.39 (2023-09-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.38...v0.6.39), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.39))
|
|
506
|
+
* properly encoding js import source [[#736](https://github.com/DanielXMoore/Civet/pull/736)]
|
|
507
|
+
* Fix #522: default to JSX preserve for ts config in LSP [[#739](https://github.com/DanielXMoore/Civet/pull/739)]
|
|
508
|
+
* LSP Build refactor [[#737](https://github.com/DanielXMoore/Civet/pull/737)]
|
|
509
|
+
* basic parser tracing [[#721](https://github.com/DanielXMoore/Civet/pull/721)]
|
|
510
|
+
* Fix go to definition [[#738](https://github.com/DanielXMoore/Civet/pull/738)]
|
|
511
|
+
* convert build to civet style [[#740](https://github.com/DanielXMoore/Civet/pull/740)]
|
|
512
|
+
* Unbundled only works in debug mode [[#741](https://github.com/DanielXMoore/Civet/pull/741)]
|
|
513
|
+
* Fix #733; Allow postfixed expressions in array literals [[#746](https://github.com/DanielXMoore/Civet/pull/746)]
|
|
514
|
+
* Fix #743; Paren-less for expression with more complex increment [[#747](https://github.com/DanielXMoore/Civet/pull/747)]
|
|
515
|
+
|
|
516
|
+
## 0.6.38 (2023-09-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.37...v0.6.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.38))
|
|
517
|
+
* Files for testing bun plugin [[#725](https://github.com/DanielXMoore/Civet/pull/725)]
|
|
518
|
+
* Fix #714 [[#724](https://github.com/DanielXMoore/Civet/pull/724)]
|
|
519
|
+
* Fix 'not in' after logical binop [[#729](https://github.com/DanielXMoore/Civet/pull/729)]
|
|
520
|
+
* Fix #726: declaration condition in switch [[#728](https://github.com/DanielXMoore/Civet/pull/728)]
|
|
521
|
+
* Fix #104: correct syntax highlight for '.=' [[#730](https://github.com/DanielXMoore/Civet/pull/730)]
|
|
522
|
+
* Add type-checking to unplugin [[#689](https://github.com/DanielXMoore/Civet/pull/689)]
|
|
523
|
+
* docs: Fix bun plugin link [[#731](https://github.com/DanielXMoore/Civet/pull/731)]
|
|
524
|
+
* sourcemap fix [[#734](https://github.com/DanielXMoore/Civet/pull/734)]
|
|
525
|
+
* Cli update [[#735](https://github.com/DanielXMoore/Civet/pull/735)]
|
|
526
|
+
|
|
527
|
+
## 0.6.37 (2023-09-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.36...v0.6.37), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.37))
|
|
528
|
+
* Fix #503: TS `using` [[#722](https://github.com/DanielXMoore/Civet/pull/722)]
|
|
529
|
+
|
|
530
|
+
## 0.6.36 (2023-09-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.35...v0.6.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.36))
|
|
531
|
+
* Unify pattern matching and declaration conditions [[#717](https://github.com/DanielXMoore/Civet/pull/717)]
|
|
532
|
+
|
|
533
|
+
## 0.6.35 (2023-09-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.34...v0.6.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.35))
|
|
534
|
+
* Fix #629: Unary op with late assignment [[#716](https://github.com/DanielXMoore/Civet/pull/716)]
|
|
535
|
+
* Reference [[#685](https://github.com/DanielXMoore/Civet/pull/685)]
|
|
536
|
+
* get/set method shorthand [[#637](https://github.com/DanielXMoore/Civet/pull/637)]
|
|
537
|
+
* Warning-free hack for ergonomic require of cjs esbuild plugin [[#718](https://github.com/DanielXMoore/Civet/pull/718)]
|
|
538
|
+
* Fix #719: existential property glob and get/set shorthand with existential glob [[#720](https://github.com/DanielXMoore/Civet/pull/720)]
|
|
539
|
+
|
|
540
|
+
## 0.6.34 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.33...v0.6.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.34))
|
|
541
|
+
|
|
542
|
+
## 0.6.33 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.32...v0.6.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.33))
|
|
543
|
+
* Underflowing arrays is a perf killer [[#711](https://github.com/DanielXMoore/Civet/pull/711)]
|
|
544
|
+
|
|
545
|
+
## 0.6.32 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.31...v0.6.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.32))
|
|
546
|
+
* Fix #702: assignment dec in postfix if [[#703](https://github.com/DanielXMoore/Civet/pull/703)]
|
|
547
|
+
* Fix #701 [[#710](https://github.com/DanielXMoore/Civet/pull/710)]
|
|
548
|
+
* Fix #691: unary not with existential [[#709](https://github.com/DanielXMoore/Civet/pull/709)]
|
|
549
|
+
|
|
550
|
+
## 0.6.31 (2023-09-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.30...v0.6.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.31))
|
|
551
|
+
* Fix #699 void arrow functions shouldn't implicitly return [[#700](https://github.com/DanielXMoore/Civet/pull/700)]
|
|
552
|
+
|
|
553
|
+
## 0.6.30 (2023-09-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.29...v0.6.30), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.30))
|
|
554
|
+
* Fix #692: proper handling of re-alaised binding properties [[#698](https://github.com/DanielXMoore/Civet/pull/698)]
|
|
555
|
+
* Fix #695; consolidate method and function returns [[#696](https://github.com/DanielXMoore/Civet/pull/696)]
|
|
556
|
+
* Fix #504; single binding pattern parameter arrow function shorthand [[#697](https://github.com/DanielXMoore/Civet/pull/697)]
|
|
557
|
+
|
|
558
|
+
## 0.6.29 (2023-09-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.28...v0.6.29), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.29))
|
|
559
|
+
* Fix #684: Add support for TypeScript /// directives [[#686](https://github.com/DanielXMoore/Civet/pull/686)]
|
|
560
|
+
|
|
561
|
+
## 0.6.28 (2023-09-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.27...v0.6.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.28))
|
|
562
|
+
* Document unplugin [[#675](https://github.com/DanielXMoore/Civet/pull/675)]
|
|
563
|
+
* Add nextjs unplugin example [[#676](https://github.com/DanielXMoore/Civet/pull/676)]
|
|
564
|
+
* New try at indented application [[#677](https://github.com/DanielXMoore/Civet/pull/677)]
|
|
565
|
+
* Convert to more Civet-y style [[#683](https://github.com/DanielXMoore/Civet/pull/683)]
|
|
566
|
+
* Fixes #664 [[#679](https://github.com/DanielXMoore/Civet/pull/679)]
|
|
567
|
+
* fix #655 [[#680](https://github.com/DanielXMoore/Civet/pull/680)]
|
|
568
|
+
* Fixes #682; Fixes #653; Improved arrow function const assignment [[#687](https://github.com/DanielXMoore/Civet/pull/687)]
|
|
569
|
+
* Fix #635: Identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
|
|
570
|
+
|
|
571
|
+
## 0.6.27 (2023-08-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.26...v0.6.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.27))
|
|
572
|
+
* 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
|
|
573
|
+
* Added void to improve types and opt out of implicit returns [[#672](https://github.com/DanielXMoore/Civet/pull/672)]
|
|
574
|
+
* Fix #666 [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
|
|
575
|
+
* Fixes #669 [[#673](https://github.com/DanielXMoore/Civet/pull/673)]
|
|
576
|
+
* Fixes #662 [[#674](https://github.com/DanielXMoore/Civet/pull/674)]
|
|
577
|
+
* Fix #663 [[#670](https://github.com/DanielXMoore/Civet/pull/670)]
|
|
578
|
+
* Add civet unplugin [[#632](https://github.com/DanielXMoore/Civet/pull/632)]
|
|
579
|
+
|
|
580
|
+
## 0.6.26 (2023-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.25...v0.6.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.26))
|
|
581
|
+
* Fix #564 Implement basic const enums in --js mode [[#654](https://github.com/DanielXMoore/Civet/pull/654)]
|
|
582
|
+
|
|
583
|
+
## 0.6.25 (2023-08-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.24...v0.6.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.25))
|
|
584
|
+
* Initial auto-const [[#649](https://github.com/DanielXMoore/Civet/pull/649)]
|
|
585
|
+
* Fix #639 hoistable thick pipe ref decs [[#651](https://github.com/DanielXMoore/Civet/pull/651)]
|
|
586
|
+
* Fix #640 implicit return of const function declarations [[#652](https://github.com/DanielXMoore/Civet/pull/652)]
|
|
587
|
+
|
|
588
|
+
## 0.6.24 (2023-08-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.23...v0.6.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.24))
|
|
589
|
+
* Updated the Bun-related how-to [[#646](https://github.com/DanielXMoore/Civet/pull/646)]
|
|
590
|
+
|
|
591
|
+
## 0.6.23 (2023-08-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.22...v0.6.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.23))
|
|
592
|
+
* Postfix expressions inside indented implicit object literals [[#630](https://github.com/DanielXMoore/Civet/pull/630)]
|
|
593
|
+
* Postfix expressions inside inline object literals [[#631](https://github.com/DanielXMoore/Civet/pull/631)]
|
|
594
|
+
* Added private this shorthand. Fixes #633 [[#636](https://github.com/DanielXMoore/Civet/pull/636)]
|
|
595
|
+
* source/lib.js -> source/lib.ts [[#638](https://github.com/DanielXMoore/Civet/pull/638)]
|
|
596
|
+
* for own..in [[#644](https://github.com/DanielXMoore/Civet/pull/644)]
|
|
597
|
+
|
|
598
|
+
## 0.6.22 (2023-08-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.21...v0.6.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.22))
|
|
599
|
+
* Constructor prefix goes after super call [[#626](https://github.com/DanielXMoore/Civet/pull/626)]
|
|
600
|
+
* Fix hoisting around IIFE [[#627](https://github.com/DanielXMoore/Civet/pull/627)]
|
|
601
|
+
|
|
602
|
+
## 0.6.21 (2023-08-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.20...v0.6.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.21))
|
|
603
|
+
* for item, index of list [[#621](https://github.com/DanielXMoore/Civet/pull/621)]
|
|
604
|
+
* for key, value in object [[#622](https://github.com/DanielXMoore/Civet/pull/622)]
|
|
605
|
+
* for each..of [[#623](https://github.com/DanielXMoore/Civet/pull/623)]
|
|
606
|
+
|
|
607
|
+
## 0.6.20 (2023-08-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.19...v0.6.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.20))
|
|
608
|
+
* Fix tuple-matching behavior [[#608](https://github.com/DanielXMoore/Civet/pull/608)]
|
|
609
|
+
* Forbid binary op after newline within SingleLineStatements (e.g. `then`) [[#612](https://github.com/DanielXMoore/Civet/pull/612)]
|
|
610
|
+
* Remove forbidMultiLineImplicitObjectLiteral [[#613](https://github.com/DanielXMoore/Civet/pull/613)]
|
|
611
|
+
* Revamp braced object literals [[#614](https://github.com/DanielXMoore/Civet/pull/614)]
|
|
612
|
+
* Revamp array literals [[#617](https://github.com/DanielXMoore/Civet/pull/617)]
|
|
613
|
+
* `type` declaration without `=` [[#611](https://github.com/DanielXMoore/Civet/pull/611)]
|
|
614
|
+
* Cache fix for function calls within inline objects [[#618](https://github.com/DanielXMoore/Civet/pull/618)]
|
|
615
|
+
* Fix implicit return with switch+then [[#620](https://github.com/DanielXMoore/Civet/pull/620)]
|
|
616
|
+
* Unify Samedent/Nested, and other indent cleanup [[#619](https://github.com/DanielXMoore/Civet/pull/619)]
|
|
617
|
+
|
|
618
|
+
## 0.6.19 (2023-08-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.18...v0.6.19), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.19))
|
|
619
|
+
* Implicit returns of (last) declaration [[#606](https://github.com/DanielXMoore/Civet/pull/606)]
|
|
620
|
+
|
|
621
|
+
## 0.6.18 (2023-08-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.17...v0.6.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.18))
|
|
622
|
+
* TypeScript named tuples [[#604](https://github.com/DanielXMoore/Civet/pull/604)]
|
|
623
|
+
* Allow ?: with named elements in tuple types [[#605](https://github.com/DanielXMoore/Civet/pull/605)]
|
|
624
|
+
* Possessive object access [[#603](https://github.com/DanielXMoore/Civet/pull/603)]
|
|
625
|
+
|
|
626
|
+
## 0.6.17 (2023-07-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.16...v0.6.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.17))
|
|
627
|
+
* `switch` fixes [[#594](https://github.com/DanielXMoore/Civet/pull/594)]
|
|
628
|
+
* Support indented RHS after binary op [[#600](https://github.com/DanielXMoore/Civet/pull/600)]
|
|
629
|
+
* No implicit return from async function: Promise<void> [[#601](https://github.com/DanielXMoore/Civet/pull/601)]
|
|
630
|
+
* autoVar/autoLet should treat `=>` and methods same as functions [[#602](https://github.com/DanielXMoore/Civet/pull/602)]
|
|
631
|
+
|
|
632
|
+
## 0.6.16 (2023-07-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.15...v0.6.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.16))
|
|
633
|
+
* Fix export functions getting implicit empty blocks [[#592](https://github.com/DanielXMoore/Civet/pull/592)]
|
|
634
|
+
|
|
635
|
+
## 0.6.15 (2023-07-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.14...v0.6.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.15))
|
|
636
|
+
* Fix inner assignments mixed with operator assignments [[#585](https://github.com/DanielXMoore/Civet/pull/585)]
|
|
637
|
+
* Allow trailing CallExpression after ExpressionizedStatement [[#584](https://github.com/DanielXMoore/Civet/pull/584)]
|
|
638
|
+
|
|
639
|
+
## 0.6.14 (2023-07-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.13...v0.6.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.14))
|
|
640
|
+
* Existence operator chaining and cleanup [[#578](https://github.com/DanielXMoore/Civet/pull/578)]
|
|
641
|
+
* Arrow function types fixes: `abstract new` and `asserts`/predicates [[#580](https://github.com/DanielXMoore/Civet/pull/580)]
|
|
642
|
+
* Fix weird custom operator behavior [[#581](https://github.com/DanielXMoore/Civet/pull/581)]
|
|
643
|
+
|
|
644
|
+
## 0.6.13 (2023-07-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.12...v0.6.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.13))
|
|
645
|
+
* Forbid implicit calls with braced argument in extends/if/else/for/when/case [[#576](https://github.com/DanielXMoore/Civet/pull/576)]
|
|
646
|
+
* Fix nested object with function children (caching) [[#577](https://github.com/DanielXMoore/Civet/pull/577)]
|
|
647
|
+
|
|
648
|
+
## 0.6.12 (2023-07-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.11...v0.6.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.12))
|
|
649
|
+
* Fix empty objects in if statements [[#571](https://github.com/DanielXMoore/Civet/pull/571)]
|
|
650
|
+
* Fix binary ops RHS in pattern matching switch [[#575](https://github.com/DanielXMoore/Civet/pull/575)]
|
|
651
|
+
* Fix missing closing braces [[#574](https://github.com/DanielXMoore/Civet/pull/574)]
|
|
652
|
+
|
|
653
|
+
## 0.6.11 (2023-07-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.10...v0.6.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.11))
|
|
654
|
+
* Add missing parentheses to glob assignments with refs [[#567](https://github.com/DanielXMoore/Civet/pull/567)]
|
|
655
|
+
* Support TypeScript optional methods [[#568](https://github.com/DanielXMoore/Civet/pull/568)]
|
|
656
|
+
* Support new arrow function types [[#569](https://github.com/DanielXMoore/Civet/pull/569)]
|
|
657
|
+
|
|
658
|
+
## 0.6.10 (2023-07-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.9...v0.6.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.10))
|
|
659
|
+
* `not` support outside coffeeCompat mode [[#557](https://github.com/DanielXMoore/Civet/pull/557)]
|
|
660
|
+
* Unicode operators ≤≥≠≢≡≣⩶⩵«»⋙‖⁇∈∉∋∌▷‥…≔→⇒ [[#558](https://github.com/DanielXMoore/Civet/pull/558)]
|
|
661
|
+
|
|
662
|
+
## 0.6.9 (2023-06-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.8...v0.6.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.9))
|
|
663
|
+
|
|
664
|
+
## 0.6.8 (2023-06-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.7...v0.6.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.8))
|
|
665
|
+
* Function implicit bodies [[#542](https://github.com/DanielXMoore/Civet/pull/542)]
|
|
666
|
+
* Fix implicit calls with bind and decorators [[#545](https://github.com/DanielXMoore/Civet/pull/545)]
|
|
667
|
+
* Fix readonly support in interfaces [[#546](https://github.com/DanielXMoore/Civet/pull/546)]
|
|
668
|
+
|
|
669
|
+
## 0.6.7 (2023-06-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.6...v0.6.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.7))
|
|
670
|
+
|
|
671
|
+
## 0.6.6 (2023-05-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.5...v0.6.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.6))
|
|
672
|
+
|
|
673
|
+
## 0.6.5 (2023-05-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.4...v0.6.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.5))
|
|
674
|
+
|
|
675
|
+
## 0.6.4 (2023-05-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.3...v0.6.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.4))
|
|
676
|
+
|
|
677
|
+
## 0.6.3 (2023-05-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.2...v0.6.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.3))
|
|
678
|
+
* Small whitespace fix for trailing splat [[#524](https://github.com/DanielXMoore/Civet/pull/524)]
|
|
679
|
+
|
|
680
|
+
## 0.6.2 (2023-05-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.1...v0.6.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.2))
|
|
681
|
+
* Support splats in type tuples [[#521](https://github.com/DanielXMoore/Civet/pull/521)]
|
|
682
|
+
|
|
683
|
+
## 0.6.1 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.0...v0.6.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.1))
|
|
684
|
+
|
|
685
|
+
## 0.6.0 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.94...v0.6.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.0))
|
|
686
|
+
|
|
687
|
+
## 0.5.94 (2023-04-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.93...v0.5.94), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.94))
|
|
688
|
+
* x@y and @@x bind shorthand, plus JSX fixes [[#506](https://github.com/DanielXMoore/Civet/pull/506)]
|
|
689
|
+
* JSX unbraced @ and @@ shorthand [[#507](https://github.com/DanielXMoore/Civet/pull/507)]
|
|
690
|
+
* JSX braceless call/member/glob expressions [[#508](https://github.com/DanielXMoore/Civet/pull/508)]
|
|
691
|
+
|
|
692
|
+
## 0.5.93 (2023-04-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.92...v0.5.93), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.93))
|
|
693
|
+
* Call splice method directly [[#499](https://github.com/DanielXMoore/Civet/pull/499)]
|
|
694
|
+
* Fix sourcemap support from CLI [[#498](https://github.com/DanielXMoore/Civet/pull/498)]
|
|
695
|
+
* Remove tsx after ESM transpilation [[#500](https://github.com/DanielXMoore/Civet/pull/500)]
|
|
696
|
+
* Fix implicit async/* in functions with arguments [[#501](https://github.com/DanielXMoore/Civet/pull/501)]
|
|
697
|
+
|
|
698
|
+
## 0.5.92 (2023-03-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.91...v0.5.92), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.92))
|
|
699
|
+
|
|
700
|
+
## 0.5.91 (2023-03-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.90...v0.5.91), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.91))
|
|
701
|
+
* Indentation after await operator [[#475](https://github.com/DanielXMoore/Civet/pull/475)]
|
|
702
|
+
* CLI can run ESM scripts via import [[#477](https://github.com/DanielXMoore/Civet/pull/477)]
|
|
703
|
+
* Inline implicit object literals can't end with comma [[#479](https://github.com/DanielXMoore/Civet/pull/479)]
|
|
704
|
+
|
|
705
|
+
## 0.5.90 (2023-03-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.89...v0.5.90), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.90))
|
|
706
|
+
|
|
707
|
+
## 0.5.89 (2023-03-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.88...v0.5.89), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.89))
|
|
708
|
+
|
|
709
|
+
## 0.5.88 (2023-03-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.87...v0.5.88), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.88))
|
|
710
|
+
|
|
711
|
+
## 0.5.87 (2023-03-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.86...v0.5.87), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.87))
|
|
712
|
+
* Link to Civetman [[#450](https://github.com/DanielXMoore/Civet/pull/450)]
|
|
713
|
+
|
|
714
|
+
## 0.5.86 (2023-03-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.85...v0.5.86), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.86))
|
|
715
|
+
|
|
716
|
+
## 0.5.85 (2023-03-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.84...v0.5.85), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.85))
|
|
717
|
+
* For loop optimizations and generalizations [[#442](https://github.com/DanielXMoore/Civet/pull/442)]
|
|
718
|
+
* Semicolon-separated statements in blocks [[#443](https://github.com/DanielXMoore/Civet/pull/443)]
|
|
719
|
+
|
|
720
|
+
## 0.5.84 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.83...v0.5.84), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.84))
|
|
721
|
+
|
|
722
|
+
## 0.5.83 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.82...v0.5.83), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.83))
|
|
723
|
+
* Fix regression in indented application from decorators change. Fixes #434 [[#435](https://github.com/DanielXMoore/Civet/pull/435)]
|
|
724
|
+
|
|
725
|
+
## 0.5.82 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.81...v0.5.82), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.82))
|
|
726
|
+
|
|
727
|
+
## 0.5.81 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.80...v0.5.81), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.81))
|
|
728
|
+
|
|
729
|
+
## 0.5.80 (2023-03-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.79...v0.5.80), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.80))
|
|
730
|
+
* New top-level statement system [[#414](https://github.com/DanielXMoore/Civet/pull/414)]
|
|
731
|
+
|
|
732
|
+
## 0.5.79 (2023-02-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.78...v0.5.79), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.79))
|
|
733
|
+
|
|
734
|
+
## 0.5.78 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.77...v0.5.78), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.78))
|
|
735
|
+
* Call with unparenthesized iteration expression argument [[#411](https://github.com/DanielXMoore/Civet/pull/411)]
|
|
736
|
+
|
|
737
|
+
## 0.5.77 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.76...v0.5.77), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.77))
|
|
738
|
+
* async do, async for [[#402](https://github.com/DanielXMoore/Civet/pull/402)]
|
|
739
|
+
* Improve ligature toggles [[#404](https://github.com/DanielXMoore/Civet/pull/404)]
|
|
740
|
+
* Leave plain JSX strings alone, including newlines [[#408](https://github.com/DanielXMoore/Civet/pull/408)]
|
|
741
|
+
* enum support [[#410](https://github.com/DanielXMoore/Civet/pull/410)]
|
|
742
|
+
|
|
743
|
+
## 0.5.76 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.75...v0.5.76), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.76))
|
|
744
|
+
* Fix automatic async vs. pipe invocations [[#401](https://github.com/DanielXMoore/Civet/pull/401)]
|
|
745
|
+
|
|
746
|
+
## 0.5.75 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.74...v0.5.75), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.75))
|
|
747
|
+
* Move Philosophy to civet.dev [[#394](https://github.com/DanielXMoore/Civet/pull/394)]
|
|
748
|
+
* Prevent indented application in Coffee for loops [[#396](https://github.com/DanielXMoore/Civet/pull/396)]
|
|
749
|
+
* Forbid indented application in first line of array literal [[#397](https://github.com/DanielXMoore/Civet/pull/397)]
|
|
750
|
+
* Automatically await/async expressionized statements with await [[#399](https://github.com/DanielXMoore/Civet/pull/399)]
|
|
751
|
+
|
|
752
|
+
## 0.5.74 (2023-02-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.73...v0.5.74), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.74))
|
|
753
|
+
* do expressions wrapping in iffe [[#376](https://github.com/DanielXMoore/Civet/pull/376)]
|
|
754
|
+
* Write an intro to Civet for the front page [[#386](https://github.com/DanielXMoore/Civet/pull/386)]
|
|
755
|
+
* Update Hero.vue [[#392](https://github.com/DanielXMoore/Civet/pull/392)]
|
|
756
|
+
* TypeScript non-null declarations [[#393](https://github.com/DanielXMoore/Civet/pull/393)]
|
|
757
|
+
|
|
758
|
+
## 0.5.73 (2023-02-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.72...v0.5.73), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.73))
|
|
759
|
+
|
|
760
|
+
## 0.5.72 (2023-02-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.71...v0.5.72), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.72))
|
|
761
|
+
|
|
762
|
+
## 0.5.71 (2023-02-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.70...v0.5.71), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.71))
|
|
763
|
+
* return.value and return = [[#364](https://github.com/DanielXMoore/Civet/pull/364)]
|
|
764
|
+
* Trailing member properties in blocks [[#368](https://github.com/DanielXMoore/Civet/pull/368)]
|
|
765
|
+
* Declare and update return.value [[#366](https://github.com/DanielXMoore/Civet/pull/366)]
|
|
766
|
+
|
|
767
|
+
## 0.5.70 (2023-02-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.69...v0.5.70), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.70))
|
|
768
|
+
* Allow label argument in break and continue [[#363](https://github.com/DanielXMoore/Civet/pull/363)]
|
|
769
|
+
|
|
770
|
+
## 0.5.69 (2023-02-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.68...v0.5.69), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.69))
|
|
771
|
+
* Allow assignments and update operators within assignments and update operators ++/-- [[#353](https://github.com/DanielXMoore/Civet/pull/353)]
|
|
772
|
+
* Support for labeling statements [[#354](https://github.com/DanielXMoore/Civet/pull/354)]
|
|
773
|
+
* Cleanup flag stacks, re-allow stuff inside parens/brackets/braces [[#356](https://github.com/DanielXMoore/Civet/pull/356)]
|
|
774
|
+
* Prevent `case:` from implicit object literal [[#357](https://github.com/DanielXMoore/Civet/pull/357)]
|
|
775
|
+
|
|
776
|
+
## 0.5.68 (2023-02-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.67...v0.5.68), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.68))
|
|
777
|
+
* Inner assignments within assignment chains [[#348](https://github.com/DanielXMoore/Civet/pull/348)]
|
|
778
|
+
* Test helper `throws` supports description and --- [[#349](https://github.com/DanielXMoore/Civet/pull/349)]
|
|
779
|
+
|
|
780
|
+
## 0.5.67 (2023-02-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.66...v0.5.67), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.67))
|
|
781
|
+
* Switch prelude declarations from const to var [[#344](https://github.com/DanielXMoore/Civet/pull/344)]
|
|
782
|
+
* Spreads in object globs [[#343](https://github.com/DanielXMoore/Civet/pull/343)]
|
|
783
|
+
* Pipelines lower precedence than implicit arguments [[#347](https://github.com/DanielXMoore/Civet/pull/347)]
|
|
784
|
+
* Support hex and other numbers in ranges [[#345](https://github.com/DanielXMoore/Civet/pull/345)]
|
|
785
|
+
|
|
786
|
+
## 0.5.66 (2023-02-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.65...v0.5.66), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.66))
|
|
787
|
+
* xor/^^ and xnor/!^ operators [[#340](https://github.com/DanielXMoore/Civet/pull/340)]
|
|
788
|
+
|
|
789
|
+
## 0.5.65 (2023-02-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.64...v0.5.65), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.65))
|
|
790
|
+
|
|
791
|
+
## 0.5.64 (2023-02-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.63...v0.5.64), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.64))
|
|
792
|
+
* Object globs, v2 [[#333](https://github.com/DanielXMoore/Civet/pull/333)]
|
|
793
|
+
* Fix #332 [[#334](https://github.com/DanielXMoore/Civet/pull/334)]
|
|
794
|
+
|
|
795
|
+
## 0.5.63 (2023-02-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.62...v0.5.63), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.63))
|
|
796
|
+
* Improve super property support [[#326](https://github.com/DanielXMoore/Civet/pull/326)]
|
|
797
|
+
|
|
798
|
+
## 0.5.62 (2023-02-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.61...v0.5.62), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.62))
|
|
799
|
+
* Tagged string literals become tagged template literals [[#322](https://github.com/DanielXMoore/Civet/pull/322)]
|
|
800
|
+
* Function fixes [[#323](https://github.com/DanielXMoore/Civet/pull/323)]
|
|
801
|
+
* typeof shorthand [[#325](https://github.com/DanielXMoore/Civet/pull/325)]
|
|
802
|
+
|
|
803
|
+
## 0.5.61 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.60...v0.5.61), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.61))
|
|
804
|
+
|
|
805
|
+
## 0.5.60 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.59...v0.5.60), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.60))
|
|
806
|
+
* operator= assignment [[#301](https://github.com/DanielXMoore/Civet/pull/301)]
|
|
807
|
+
|
|
808
|
+
## 0.5.59 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.58...v0.5.59), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.59))
|
|
809
|
+
|
|
810
|
+
## 0.5.58 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.57...v0.5.58), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.58))
|
|
811
|
+
|
|
812
|
+
## 0.5.57 (2023-01-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.56...v0.5.57), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.57))
|
|
813
|
+
|
|
814
|
+
## 0.5.56 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.55...v0.5.56), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.56))
|
|
815
|
+
* `{x[y]}` shorthand for `{[y]: x[y]}` [[#284](https://github.com/DanielXMoore/Civet/pull/284)]
|
|
816
|
+
* Require space in JSX after identifier or ...rest attribute [[#285](https://github.com/DanielXMoore/Civet/pull/285)]
|
|
817
|
+
* `not instanceof`, `!<?`, reserve `not` [[#286](https://github.com/DanielXMoore/Civet/pull/286)]
|
|
818
|
+
|
|
819
|
+
## 0.5.55 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.54...v0.5.55), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.55))
|
|
820
|
+
* Integer property access [[#283](https://github.com/DanielXMoore/Civet/pull/283)]
|
|
821
|
+
|
|
822
|
+
## 0.5.54 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.53...v0.5.54), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.54))
|
|
823
|
+
|
|
824
|
+
## 0.5.53 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.52...v0.5.53), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.53))
|
|
825
|
+
* Fix Init being called too late [[#280](https://github.com/DanielXMoore/Civet/pull/280)]
|
|
826
|
+
* Fix semicolon method body [[#281](https://github.com/DanielXMoore/Civet/pull/281)]
|
|
827
|
+
|
|
828
|
+
## 0.5.52 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.51...v0.5.52), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.52))
|
|
829
|
+
* `<:` shorthand for implements [[#275](https://github.com/DanielXMoore/Civet/pull/275)]
|
|
830
|
+
* Braced object literal shorthand [[#276](https://github.com/DanielXMoore/Civet/pull/276)]
|
|
831
|
+
* Property access with string literals [[#278](https://github.com/DanielXMoore/Civet/pull/278)]
|
|
832
|
+
* Insert semicolons between lines that JS would combine [[#277](https://github.com/DanielXMoore/Civet/pull/277)]
|
|
833
|
+
|
|
834
|
+
## 0.5.51 (2023-01-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.50...v0.5.51), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.51))
|
|
835
|
+
|
|
836
|
+
## 0.5.50 (2023-01-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.49...v0.5.50), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.50))
|
|
837
|
+
|
|
838
|
+
## 0.5.49 (2023-01-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.48...v0.5.49), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.49))
|
|
839
|
+
* Contributing document for getting started with Civet [[#255](https://github.com/DanielXMoore/Civet/pull/255)]
|
|
840
|
+
|
|
841
|
+
## 0.5.48 (2023-01-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.47...v0.5.48), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.48))
|
|
842
|
+
|
|
843
|
+
## 0.5.47 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.46...v0.5.47), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.47))
|
|
844
|
+
|
|
845
|
+
## 0.5.46 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.45...v0.5.46), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.46))
|
|
846
|
+
|
|
847
|
+
## 0.5.45 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.44...v0.5.45), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.45))
|
|
848
|
+
|
|
849
|
+
## 0.5.44 (2023-01-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.43...v0.5.44), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.44))
|
|
850
|
+
|
|
851
|
+
## 0.5.43 (2023-01-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.42...v0.5.43), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.43))
|
|
852
|
+
|
|
853
|
+
## 0.5.42 (2023-01-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.41...v0.5.42), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.42))
|
|
854
|
+
|
|
855
|
+
## 0.5.41 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.40...v0.5.41), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.41))
|
|
856
|
+
|
|
857
|
+
## 0.5.40 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.39...v0.5.40), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.40))
|
|
858
|
+
* New fast JSX parser [[#235](https://github.com/DanielXMoore/Civet/pull/235)]
|
|
859
|
+
|
|
860
|
+
## 0.5.39 (2023-01-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.38...v0.5.39), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.39))
|
|
861
|
+
* Fix CLI behavior especially on Unix [[#232](https://github.com/DanielXMoore/Civet/pull/232)]
|
|
862
|
+
|
|
863
|
+
## 0.5.38 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.37...v0.5.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.38))
|
|
864
|
+
|
|
865
|
+
## 0.5.37 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.36...v0.5.37), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.37))
|
|
866
|
+
|
|
867
|
+
## 0.5.36 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.35...v0.5.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.36))
|
|
868
|
+
* Gulp plugin [[#206](https://github.com/DanielXMoore/Civet/pull/206)]
|
|
869
|
+
|
|
870
|
+
## 0.5.35 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.34...v0.5.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.35))
|
|
871
|
+
|
|
872
|
+
## 0.5.34 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.33...v0.5.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.34))
|
|
873
|
+
|
|
874
|
+
## 0.5.33 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.32...v0.5.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.33))
|
|
875
|
+
* Synonyous -> synonymous [[#180](https://github.com/DanielXMoore/Civet/pull/180)]
|
|
876
|
+
|
|
877
|
+
## 0.5.32 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.31...v0.5.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.32))
|
|
878
|
+
|
|
879
|
+
## 0.5.31 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.30...v0.5.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.31))
|
|
880
|
+
|
|
881
|
+
## 0.5.30 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.29...v0.5.30), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.30))
|
|
882
|
+
|
|
883
|
+
## 0.5.29 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.28...v0.5.29), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.29))
|
|
884
|
+
|
|
885
|
+
## 0.5.28 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.27...v0.5.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.28))
|
|
886
|
+
* Create directory in `-o` option if it doesn't exist [[#164](https://github.com/DanielXMoore/Civet/pull/164)]
|
|
887
|
+
|
|
888
|
+
## 0.5.27 (2023-01-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.26...v0.5.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.27))
|
|
889
|
+
|
|
890
|
+
## 0.5.26 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.25...v0.5.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.26))
|
|
891
|
+
* New Playground tag in docs [[#125](https://github.com/DanielXMoore/Civet/pull/125)]
|
|
892
|
+
* Docs: fix code examples rendering [[#140](https://github.com/DanielXMoore/Civet/pull/140)]
|
|
893
|
+
|
|
894
|
+
## 0.5.25 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.24...v0.5.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.25))
|
|
895
|
+
* Fix for nested JSX if else expressions [[#133](https://github.com/DanielXMoore/Civet/pull/133)]
|
|
896
|
+
|
|
897
|
+
## 0.5.24 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.23...v0.5.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.24))
|
|
898
|
+
|
|
899
|
+
## 0.5.23 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.22...v0.5.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.23))
|
|
900
|
+
|
|
901
|
+
## 0.5.22 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.21...v0.5.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.22))
|
|
902
|
+
|
|
903
|
+
## 0.5.21 (2023-01-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.20...v0.5.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.21))
|
|
904
|
+
|
|
905
|
+
## 0.5.20 (2023-01-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.19...v0.5.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.20))
|
|
906
|
+
|
|
907
|
+
## 0.5.19 (2022-12-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.18...v0.5.19), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.19))
|
|
908
|
+
|
|
909
|
+
## 0.5.18 (2022-12-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.16...v0.5.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.18))
|
|
910
|
+
|
|
911
|
+
## 0.5.16 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.15...v0.5.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.16))
|
|
912
|
+
|
|
913
|
+
## 0.5.15 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.14...v0.5.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.15))
|
|
914
|
+
|
|
915
|
+
## 0.5.14 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.13...v0.5.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.14))
|
|
916
|
+
|
|
917
|
+
## 0.5.13 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.12...v0.5.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.13))
|
|
918
|
+
|
|
919
|
+
## 0.5.12 (2022-12-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.11...v0.5.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.12))
|
|
920
|
+
|
|
921
|
+
## 0.5.11 (2022-12-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.10...v0.5.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.11))
|
|
922
|
+
|
|
923
|
+
## 0.5.10 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.9...v0.5.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.10))
|
|
924
|
+
|
|
925
|
+
## 0.5.9 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.8...v0.5.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.9))
|
|
926
|
+
|
|
927
|
+
## 0.5.8 (2022-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.7...v0.5.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.8))
|
|
928
|
+
|
|
929
|
+
## 0.5.7 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.6...v0.5.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.7))
|
|
930
|
+
|
|
931
|
+
## 0.5.6 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.5...v0.5.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.6))
|
|
932
|
+
|
|
933
|
+
## 0.5.5 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.4...v0.5.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.5))
|
|
934
|
+
|
|
935
|
+
## 0.5.4 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.3...v0.5.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.4))
|
|
936
|
+
|
|
937
|
+
## 0.5.3 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.2...v0.5.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.3))
|
|
938
|
+
|
|
939
|
+
## 0.5.2 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.1...v0.5.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.2))
|
|
940
|
+
|
|
941
|
+
## 0.5.1 (2022-12-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.0...v0.5.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.1))
|
|
942
|
+
|
|
943
|
+
## 0.5.0 (2022-12-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.38...v0.5.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.0))
|
|
944
|
+
|
|
945
|
+
## 0.4.38 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.37...v0.4.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.38))
|
|
946
|
+
|
|
947
|
+
## 0.4.37 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.36...v0.4.37), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.37))
|
|
948
|
+
|
|
949
|
+
## 0.4.36 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.35...v0.4.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.36))
|
|
950
|
+
|
|
951
|
+
## 0.4.35 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.34...v0.4.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.35))
|
|
952
|
+
|
|
953
|
+
## 0.4.34 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.33...v0.4.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.34))
|
|
954
|
+
|
|
955
|
+
## 0.4.33 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.32...v0.4.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.33))
|
|
956
|
+
|
|
957
|
+
## 0.4.32 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.31...v0.4.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.32))
|
|
958
|
+
|
|
959
|
+
## 0.4.31 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.28...v0.4.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.31))
|
|
960
|
+
|
|
961
|
+
## 0.4.28 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.27...v0.4.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.28))
|
|
962
|
+
|
|
963
|
+
## 0.4.27 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.26...v0.4.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.27))
|
|
964
|
+
|
|
965
|
+
## 0.4.26 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.25...v0.4.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.26))
|
|
966
|
+
|
|
967
|
+
## 0.4.25 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.24...v0.4.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.25))
|
|
968
|
+
|
|
969
|
+
## 0.4.24 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.23...v0.4.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.24))
|
|
970
|
+
|
|
971
|
+
## 0.4.23 (2022-12-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.22...v0.4.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.23))
|
|
972
|
+
* CoffeeScript export to-do [[#22](https://github.com/DanielXMoore/Civet/pull/22)]
|
|
973
|
+
* Add command to restart language server [[#23](https://github.com/DanielXMoore/Civet/pull/23)]
|
|
974
|
+
|
|
975
|
+
## 0.4.22 (2022-12-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.21...v0.4.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.22))
|
|
976
|
+
* More consistent use of paths vs. file URIs [[#19](https://github.com/DanielXMoore/Civet/pull/19)]
|
|
977
|
+
* Support for unbraced `export x, y` [[#21](https://github.com/DanielXMoore/Civet/pull/21)]
|
|
978
|
+
|
|
979
|
+
## 0.4.21 (2022-12-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.20...v0.4.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.21))
|
|
980
|
+
|
|
981
|
+
## 0.4.20 (2022-12-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.14...v0.4.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.20))
|
|
982
|
+
|
|
983
|
+
## 0.4.19-pre.14 (2022-11-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.13...v0.4.19-pre.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.14))
|
|
984
|
+
* Allow and= / or= by default (not just coffeeCompat) [[#16](https://github.com/DanielXMoore/Civet/pull/16)]
|
|
985
|
+
* MIT license [[#17](https://github.com/DanielXMoore/Civet/pull/17)]
|
|
986
|
+
|
|
987
|
+
## 0.4.19-pre.13 (2022-11-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.12...v0.4.19-pre.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.13))
|
|
988
|
+
|
|
989
|
+
## 0.4.19-pre.12 (2022-11-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.11...v0.4.19-pre.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.12))
|
|
990
|
+
|
|
991
|
+
## 0.4.19-pre.11 (2022-11-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.10...v0.4.19-pre.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.11))
|
|
992
|
+
* Caching [[#14](https://github.com/DanielXMoore/Civet/pull/14)]
|
|
993
|
+
|
|
994
|
+
## 0.4.19-pre.10 (2022-11-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.9...v0.4.19-pre.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.10))
|
|
995
|
+
|
|
996
|
+
## 0.4.19-pre.9 (2022-11-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.7...v0.4.19-pre.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.9))
|
|
997
|
+
|
|
998
|
+
## 0.4.19-pre.7 (2022-11-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.6...v0.4.19-pre.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.7))
|
|
999
|
+
|
|
1000
|
+
## 0.4.19-pre.6 (2022-11-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.5...v0.4.19-pre.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.6))
|
|
1001
|
+
|
|
1002
|
+
## 0.4.19-pre.5 (2022-11-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.4...v0.4.19-pre.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.5))
|
|
1003
|
+
|
|
1004
|
+
## 0.4.19-pre.4 (2022-11-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.3...v0.4.19-pre.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.4))
|
|
1005
|
+
* Add script for testing compatibility with CoffeeScript [[#7](https://github.com/DanielXMoore/Civet/pull/7)]
|
|
1006
|
+
|
|
1007
|
+
## 0.4.19-pre.3 (2022-11-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.2...v0.4.19-pre.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.3))
|
|
1008
|
+
|
|
1009
|
+
## 0.4.19-pre.2 (2022-11-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.1...v0.4.19-pre.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.2))
|
|
1010
|
+
|
|
1011
|
+
## 0.4.19-pre.1 (2022-11-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.19-pre.0...v0.4.19-pre.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.1))
|
|
1012
|
+
|
|
1013
|
+
## 0.4.19-pre.0 (2022-11-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.18.3...v0.4.19-pre.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.19-pre.0))
|
|
1014
|
+
|
|
1015
|
+
## 0.4.18.3 (2022-11-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.18.2...v0.4.18.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.18.3))
|
|
1016
|
+
* Rewrite cli to use readline interface [[#6](https://github.com/DanielXMoore/Civet/pull/6)]
|
|
1017
|
+
|
|
1018
|
+
## 0.4.18.2 (2022-11-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.18.1...v0.4.18.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.18.2))
|
|
1019
|
+
|
|
1020
|
+
## 0.4.18.1 (2022-11-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.18...v0.4.18.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.18.1))
|
|
1021
|
+
|
|
1022
|
+
## 0.4.18 (2022-11-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.17...v0.4.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.18))
|
|
1023
|
+
* Coffee comprehensions [[#4](https://github.com/DanielXMoore/Civet/pull/4)]
|
|
1024
|
+
|
|
1025
|
+
## 0.4.17 (2022-11-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.16...v0.4.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.17))
|
|
1026
|
+
* Auto var [[#3](https://github.com/DanielXMoore/Civet/pull/3)]
|
|
1027
|
+
|
|
1028
|
+
## 0.4.16 (2022-10-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.15...v0.4.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.16))
|
|
1029
|
+
|
|
1030
|
+
## 0.4.15 (2022-10-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.14...v0.4.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.15))
|
|
1031
|
+
|
|
1032
|
+
## 0.4.14 (2022-10-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.13...v0.4.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.14))
|
|
1033
|
+
|
|
1034
|
+
## 0.4.13 (2022-10-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.12...v0.4.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.13))
|
|
1035
|
+
|
|
1036
|
+
## 0.4.12 (2022-10-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.10...v0.4.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.12))
|
|
1037
|
+
|
|
1038
|
+
## 0.4.10 (2022-10-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.9...v0.4.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.10))
|
|
1039
|
+
|
|
1040
|
+
## 0.4.9 (2022-10-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.8...v0.4.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.9))
|
|
1041
|
+
|
|
1042
|
+
## 0.4.8 (2022-10-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.7...v0.4.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.8))
|
|
1043
|
+
|
|
1044
|
+
## 0.4.7 (2022-10-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.6...v0.4.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.7))
|
|
1045
|
+
|
|
1046
|
+
## 0.4.6 (2022-10-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.5...v0.4.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.6))
|
|
1047
|
+
|
|
1048
|
+
## 0.4.5 (2022-10-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.4...v0.4.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.5))
|
|
1049
|
+
|
|
1050
|
+
## 0.4.4 (2022-09-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.3...v0.4.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.4))
|
|
1051
|
+
|
|
1052
|
+
## 0.4.3 (2022-09-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.2...v0.4.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.3))
|
|
1053
|
+
|
|
1054
|
+
## 0.4.2 (2022-09-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.0...v0.4.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.2))
|
|
1055
|
+
|
|
1056
|
+
## 0.4.0 (2022-09-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.16...v0.4.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.0))
|
|
1057
|
+
|
|
1058
|
+
## 0.3.16 (2022-09-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.15...v0.3.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.16))
|
|
1059
|
+
|
|
1060
|
+
## 0.3.15 (2022-09-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.14...v0.3.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.15))
|
|
1061
|
+
|
|
1062
|
+
## 0.3.14 (2022-09-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.13...v0.3.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.14))
|
|
1063
|
+
|
|
1064
|
+
## 0.3.13 (2022-09-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.12...v0.3.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.13))
|
|
1065
|
+
|
|
1066
|
+
## 0.3.12 (2022-09-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.10...v0.3.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.12))
|
|
1067
|
+
* Transpilation overhaul [[#1](https://github.com/DanielXMoore/Civet/pull/1)]
|
|
1068
|
+
|
|
1069
|
+
## 0.3.10 (2022-09-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.9...v0.3.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.10))
|
|
1070
|
+
|
|
1071
|
+
## 0.3.9 (2022-09-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.8...v0.3.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.9))
|
|
1072
|
+
|
|
1073
|
+
## 0.3.8 (2022-09-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.7...v0.3.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.8))
|
|
1074
|
+
|
|
1075
|
+
## 0.3.7 (2022-09-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.6...v0.3.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.7))
|
|
1076
|
+
|
|
1077
|
+
## 0.3.6 (2022-09-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.5...v0.3.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.6))
|
|
1078
|
+
|
|
1079
|
+
## 0.3.5 (2022-09-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.4...v0.3.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.5))
|
|
1080
|
+
|
|
1081
|
+
## 0.3.4 (2022-09-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.3...v0.3.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.4))
|
|
1082
|
+
|
|
1083
|
+
## 0.3.3 (2022-09-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.2...v0.3.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.3))
|
|
1084
|
+
|
|
1085
|
+
## 0.3.2 (2022-09-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.1...v0.3.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.2))
|
|
1086
|
+
|
|
1087
|
+
## 0.3.1 (2022-09-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.3.0...v0.3.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.1))
|
|
1088
|
+
|
|
1089
|
+
## 0.3.0 (2022-09-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.16...v0.3.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.3.0))
|
|
1090
|
+
|
|
1091
|
+
## 0.2.16 (2022-09-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.15...v0.2.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.16))
|
|
1092
|
+
|
|
1093
|
+
## 0.2.15 (2022-09-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.14...v0.2.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.15))
|
|
1094
|
+
|
|
1095
|
+
## 0.2.14 (2022-09-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.13...v0.2.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.14))
|
|
1096
|
+
|
|
1097
|
+
## 0.2.13 (2022-08-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.12...v0.2.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.13))
|
|
1098
|
+
|
|
1099
|
+
## 0.2.12 (2022-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.11...v0.2.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.12))
|
|
1100
|
+
|
|
1101
|
+
## 0.2.11 (2022-08-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.9...v0.2.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.11))
|
|
1102
|
+
|
|
1103
|
+
## 0.2.9 (2022-08-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.8...v0.2.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.9))
|
|
1104
|
+
|
|
1105
|
+
## 0.2.8 (2022-08-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.7...v0.2.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.8))
|
|
1106
|
+
|
|
1107
|
+
## 0.2.7 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.6...v0.2.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.7))
|
|
1108
|
+
|
|
1109
|
+
## 0.2.6 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.5...v0.2.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.6))
|
|
1110
|
+
|
|
1111
|
+
## 0.2.5 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.4...v0.2.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.5))
|
|
1112
|
+
|
|
1113
|
+
## 0.2.4 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.3...v0.2.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.4))
|
|
1114
|
+
|
|
1115
|
+
## 0.2.3 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.2...v0.2.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.3))
|
|
1116
|
+
|
|
1117
|
+
## 0.2.2 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.2.0...v0.2.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.2))
|
|
1118
|
+
|
|
1119
|
+
## 0.2.0 (2022-08-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.1.1...v0.2.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.2.0))
|
|
1120
|
+
|
|
1121
|
+
## 0.1.1 (2022-08-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.1.0...v0.1.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.1.1))
|
|
1122
|
+
|
|
1123
|
+
## 0.1.0 (2022-08-07, [commits](https://github.com/DanielXMoore/Civet/commits/v0.1.0))
|
|
1124
|
+
|