Skip to content

Commit

Permalink
v6.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Sep 10, 2024
1 parent a037315 commit 5d6a187
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### 6.2.2

* 10/09/24
* #212 Bugfix: `sqrt` error when `Big.strict` is `true`.

#### 6.2.1

* 09/07/22
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright © `<2022>` `Michael Mclaughlin`
Copyright © `<2024>` `Michael Mclaughlin`

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import Big from './path/to/big.mjs';
Get a minified version from a CDN:
```html
<script src='https://cdn.jsdelivr.net/npm/[email protected].1/big.min.js'></script>
<script src='https://cdn.jsdelivr.net/npm/[email protected].2/big.min.js'></script>
```

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

```javascript
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.1/big.mjs';
import Big from 'https://unpkg.com/[email protected].1/big.mjs';
import Big from 'https://raw.githubusercontent.com/mikemcl/big.js/v6.2.2/big.mjs';
import Big from 'https://unpkg.com/[email protected].2/big.mjs';
```

## Use
Expand Down
4 changes: 2 additions & 2 deletions big.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* big.js v6.2.1
* big.js v6.2.2
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2022 Michael Mclaughlin
* Copyright (c) 2024 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
*/
;(function (GLOBAL) {
Expand Down
4 changes: 2 additions & 2 deletions big.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* big.js v6.2.1
* big.js v6.2.2
* A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic.
* Copyright (c) 2022 Michael Mclaughlin
* Copyright (c) 2024 Michael Mclaughlin
* https://github.com/MikeMcl/big.js/LICENCE.md
*/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "big.js",
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
"version": "6.2.1",
"version": "6.2.2",
"keywords": [
"arbitrary",
"precision",
Expand Down

0 comments on commit 5d6a187

Please sign in to comment.