Skip to content

Commit f99020e

Browse files
committed
Publish v11.4.0
1 parent 22c29db commit f99020e

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

HISTORY.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# History
22

3-
# unpublished changes since 11.3.3
3+
# 2022-11-18, 11.4.0
44

55
- Implemented more wildcards to describe rules for `simplify`, making it easier
66
for example to describe unary minus (#1915). Thanks @thatcomputerguy0101.
77
- Implemented functions `schur`, `sylvester`, and `lyap` (#2646).
88
Thanks @egidioln.
9+
- Implemented function `polynomialRoot`, and use it in a benchmark (#2839).
10+
Thanks @gwhitney.
911
- Fix #2825 partly: improve simplifying operations on constants in
1012
non-commutative contexts (#2827). Thanks @samueltlg.
1113
- Fix #2840: a bug in the docs and type definitions of `Node.traverse` and

misc/how_to_publish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ correct date and version number in the header.
2525

2626
- Commit the final code.
2727
- Merge the develop branch into the master branch.
28-
- Push to github.
28+
- Push to Github.
2929

3030
Now go to Github Actions and verify if the tests run fine there as well:
3131

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mathjs",
3-
"version": "11.3.3",
3+
"version": "11.4.0",
44
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types like numbers, big numbers, complex numbers, fractions, units, and matrices.",
55
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)",
66
"homepage": "https://mathjs.org",

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const version = '11.3.3'
1+
export const version = '11.4.0'
22
// Note: This file is automatically generated when building math.js.
33
// Changes made in this file will be overwritten.

0 commit comments

Comments
 (0)