mathjs 11.1.0 → 11.2.0

Sign up to get free protection for your applications and to get access to all the features.
package/CONTRIBUTING.md CHANGED
@@ -4,10 +4,7 @@ Contributions to the math.js library are very welcome! We can't do this alone. Y
4
4
 
5
5
  ### What can I do?
6
6
 
7
- Search through the [issues](https://github.com/josdejong/mathjs/issues) looking
8
- for something that looks interesting to you to pick up. Some issues are marked
9
- ["help wanted"](https://github.com/josdejong/mathjs/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22),
10
- these are typically issues which should be relatively easy to pick up.
7
+ Search through the [issues](https://github.com/josdejong/mathjs/issues) looking for bugs that you can help fix, or look at [discussions/ideas](https://github.com/josdejong/mathjs/discussions/categories/ideas) to see if there is an idea for a new feature that that looks interesting to pick up.
11
8
 
12
9
  ### There are a few preferences regarding code contributions:
13
10
 
package/HISTORY.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # History
2
2
 
3
+ # 2022-09-12, 11.2.0
4
+
5
+ - Implement function `isRelationalNode` (#2731). Thanks @isaacbyr.
6
+ - Added missing types `'largerEq'` and `'or'` in `OperatorNodeMap` in the
7
+ TypeScript definitions. Thanks @ajinkyac03.
8
+ - Fixed typos in min func type defs (#2768). Thanks @mabdullahadeel.
9
+ - Improved the TypeScript definitions for `pickRandom`. Thanks @mattvague.
10
+ - Fixed documentation of unit `min` which means `minutes`, not `minim` (#2773).
11
+ Thanks @jasonhornsby.
12
+
13
+
3
14
  # 2022-08-23, 11.1.0
4
15
 
5
16
  - Add Unit constructor from value and pure (valueless) Unit (#2628).