Skip to content

Commit 876f169

Browse files
committed
v2.2.0
1 parent 354586f commit 876f169

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGELOG
22
=========
33

44
## HEAD (Unreleased)
5+
_(none)_
6+
7+
---
8+
9+
## v2.2.0 (2024-02-10)
510
* *Feature*: Implement `MpZ.asIntN` and `MpZ.asUintN`.
611
* *Feature*: Implement `#fact`.
712
* *Feature*: Implement `MpZ.random`.
@@ -13,8 +18,6 @@ CHANGELOG
1318
* *Improvement*: Improve `#add` and `#sub` performance.
1419
* *Bugfix*: Make `#not` public.
1520

16-
---
17-
1821
## 2.1.0 (2024-01-28)
1922
* *Feature*: Implement `#inc` and `#dec`.
2023
* *Improvement*: Improve `#add` performance.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
# @hypercubed/as-mpz
66

7-
Immutable arbitrary precision integer library for AssemblyScript.
7+
Immutable multiple precision integer library for AssemblyScript.
88

99
[](#features)
1010

1111
## Features
1212

13-
- Arbitrary precision integers (theoretically limited by memory)
13+
- Multiple precision integers (theoretically limited by memory)
1414
- Fast (extensivly benchmarked)
1515
- Accurate\* (tested against JavaScript BigInt)
1616
- For use in AssemblyScript projects

blueprint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Features
66

7-
- Arbitrary precision integers (theoretically limited by memory)
7+
- Multiple precision integers (theoretically limited by memory)
88
- Fast (extensivly benchmarked)
99
- Accurate\* (tested against JavaScript BigInt)
1010
- For use in AssemblyScript projects

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@hypercubed/as-mpz",
3-
"version": "2.1.0",
4-
"description": "Immutable arbitrary precision integer library for AssemblyScript.",
3+
"version": "2.2.0",
4+
"description": "Immutable multiple precision integer library for AssemblyScript.",
55
"ascMain": "assembly/index.ts",
66
"types": "assembly/index.ts",
77
"source": "assembly/main.ts",

0 commit comments

Comments
 (0)