Publish v6.0.0 🎉

This commit is contained in:
jos 2019-06-08 20:00:42 +02:00
parent 51f99dbcd3
commit 5e329838a3
5 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,6 @@
# History
# 2019-06-05, version 6.0.0-beta.3
# 2019-06-08, version 6.0.0
!!! BE CAREFUL: BREAKING CHANGES !!!
@ -88,8 +88,6 @@
- Dropped support for renaming factory functions when importing them.
- Dropped fake BigNumber support of function `erf`.
- Removed all index.js files used to load specific functions instead of all, like:
- Updated the values of all physical units to their latest official values.
See #1529. Thanks @ericman314.
```
// v5
@ -115,6 +113,9 @@
See example `advanced/custom_loading.js`.
- Updated the values of all physical units to their latest official values.
See #1529. Thanks @ericman314.
### Non breaking changes
- Implemented units `t`, `tonne`, `bel`, `decibel`, `dB`, and prefixes

View File

@ -25,9 +25,6 @@ Build the distribution files in folders `dist` and `lib`, and test everything by
After the build is complete, verify if the files are created and contain the
correct date and version number in the header.
Check whether there are new markdown files generated in `./docs` and add if
so add them to git.
## Commit

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "6.0.0-beta.3",
"version": "6.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "6.0.0-beta.3",
"version": "6.0.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)",
"contributors": [

View File

@ -1,3 +1,3 @@
export const version = '6.0.0-beta.3'
export const version = '6.0.0'
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.