mathjs 10.6.0 → 10.6.3

Sign up to get free protection for your applications and to get access to all the features.
package/HISTORY.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # History
2
2
 
3
+ # 2022-06-24, version 10.6.3
4
+
5
+ - Revert the TypeScript definition fixes for `factory` applied in `v10.6.2`,
6
+ they give some complications.
7
+
8
+
9
+ # 2022-06-24, version 10.6.2
10
+
11
+ - Improve TypeScript definitions of `ParenthesisNode`. Thanks @mattvague.
12
+ - Change the TypeScript definition of `MathNodeCommon['type']` into a less
13
+ strict string, so it is possible to extend with new Node classes.
14
+ Thanks @mattvague.
15
+ - Improve TypeScript definitions of the `factory` function, thanks @mattvague.
16
+
17
+
18
+ # 2022-05-31, version 10.6.1
19
+
20
+ - Improve the TypeScript types For `OperatorNode`: you can now define generic
21
+ types like `OperatorNode<'+', 'add'>`. Thanks @mattvague.
22
+
23
+
3
24
  # 2022-05-24, version 10.6.0
4
25
 
5
26
  - Implementation of fourier transform functions `fft` and `ifft` (#2540).