From 0afcd44cfde7ce264ed216cf64d9062106824d01 Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 22 Sep 2021 21:16:27 +0200 Subject: [PATCH] Publish v9.5.0 --- AUTHORS | 1 + HISTORY.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/version.js | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 1bd0bd0ab1..161b984956 100644 --- a/AUTHORS +++ b/AUTHORS @@ -165,5 +165,6 @@ CRIMX Tom Larkworthy Tom Larkworthy Wim Devos +Ramesh Vijayaraghavan # Generated by tools/update-authors.js diff --git a/HISTORY.md b/HISTORY.md index 08c1b1a93f..211c6e76fc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # History -# not yet published, version 9.5.0 +# 2021-09-22, version 9.5.0 - Implemented support for calculations with percentage, see #2303. Thanks @rvramesh. diff --git a/package-lock.json b/package-lock.json index ae21ca44eb..c64df434e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "mathjs", - "version": "9.4.5", + "version": "9.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "9.4.5", + "version": "9.5.0", "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.15.4", diff --git a/package.json b/package.json index da27f3057f..4fa38083d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mathjs", - "version": "9.4.5", + "version": "9.5.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 (https://github.com/josdejong)", "homepage": "https://mathjs.org", diff --git a/src/version.js b/src/version.js index 745f4e8253..cceb39a9d2 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ -export const version = '9.4.5' +export const version = '9.5.0' // Note: This file is automatically generated when building math.js. // Changes made in this file will be overwritten.