Skip to content

Commit 461a07c

Browse files
committed
v7.0.0
1 parent d30f3dc commit 461a07c

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
#### 7.0.0
2+
3+
* 21/04/25
4+
* Add GitHub Actions CI.
5+
* #210 Check for `Symbol` support.
6+
* #220 Prevent new constructor creation if `undefined` is passed explicitly.
7+
* Remove legacy docs and version selector.
8+
19
#### 6.2.2
210

311
* 10/09/24

LICENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22
=====================
33

4-
Copyright © `<2024>` `Michael Mclaughlin`
4+
Copyright © `<2025>` `Michael Mclaughlin`
55

66
Permission is hereby granted, free of charge, to any person
77
obtaining a copy of this software and associated documentation

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
[![npm version](https://img.shields.io/npm/v/big.js.svg)](https://www.npmjs.com/package/big.js)
66
[![npm downloads](https://img.shields.io/npm/dw/big.js)](https://www.npmjs.com/package/big.js)
7+
[![CI](https://github.com/MikeMcl/big.js/actions/workflows/ci.yml/badge.svg)](https://github.com/MikeMcl/big.js/actions/workflows/ci.yml)
78

89
## Features
910

@@ -40,7 +41,7 @@ import Big from './path/to/big.mjs';
4041
Get a minified version from a CDN:
4142
4243
```html
43-
<script src='https://cdn.jsdelivr.net/npm/big.js@6.2.2/big.min.js'></script>
44+
<script src='https://cdn.jsdelivr.net/npm/big.js@7.0.0/big.min.js'></script>
4445
```
4546

4647
### [Node.js](http://nodejs.org)
@@ -64,8 +65,8 @@ import Big from 'big.js';
6465
### [Deno](https://deno.land/)
6566

6667
```javascript
67-
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.2/big.mjs';
68-
import Big from 'https://unpkg.com/big.js@6.2.2/big.mjs';
68+
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v7.0.0/big.mjs';
69+
import Big from 'https://unpkg.com/big.js@latest/big.mjs';
6970
```
7071

7172
## Use

big.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* big.js v6.2.2
2+
* big.js v7.0.0
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2024 Michael Mclaughlin
4+
* Copyright (c) 2025 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md
66
*/
77
;(function (GLOBAL) {

big.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* big.js v6.2.2
2+
* big.js v7.0.0
33
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
4-
* Copyright (c) 2024 Michael Mclaughlin
4+
* Copyright (c) 2025 Michael Mclaughlin
55
* https://github.com/MikeMcl/big.js/LICENCE.md
66
*/
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "big.js",
33
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
4-
"version": "6.2.2",
4+
"version": "7.0.0",
55
"keywords": [
66
"arbitrary",
77
"precision",

0 commit comments

Comments
 (0)