Skip to content

Commit

Permalink
Publish v7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jul 13, 2020
1 parent 6ef0f9b commit 76a0ec7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Expand Up @@ -132,5 +132,7 @@ Michal Grňo <m93a.cz@gmail.com>
dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Markel F <github@markel.dev>
Lazersmoke <lazersmoke@gmail.com>
SungJinWoo-SL <56172528+SungJinWoo-SL@users.noreply.github.com>
Nick Ewing <nick@nickewing.net>

# Generated by tools/update-authors.js
5 changes: 4 additions & 1 deletion HISTORY.md
@@ -1,7 +1,10 @@
# History

# not yet published, version 7.0.3
# 2020-07-13, version 7.1.0

- Implement support for recursion (self-referencing) of typed-functions,
new in `typed-function@2.0.0`. This fixes #1885: functions which where
extended with a new data type did not always work. Thanks @nickewing.
- Fix #1899: documentation on expression trees still using old namespace
`math.expression.node.*` instead of `math.*`.

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "7.0.2",
"version": "7.1.0",
"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.",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"homepage": "https://mathjs.org",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
@@ -1,3 +1,3 @@
export const version = '7.0.2'
export const version = '7.1.0'
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.
2 changes: 1 addition & 1 deletion tools/docgenerator.js
Expand Up @@ -646,7 +646,7 @@ function iteratePath (functionNames, inputPath, outputPath, outputRoot) {
})
}

function findAll(text, regex) {
function findAll (text, regex) {
const matches = []
let match

Expand Down

0 comments on commit 76a0ec7

Please sign in to comment.