Skip to content

Commit 7077bd1

Browse files
committed
Bump version to 1.6.0 and update readme
I also needed to change package.json because Jest was giving me the following error during `safePublish`: "TypeError: Jest: a transform must export a `process` function." I fixed this by specifying specific versions of ts-jest and typescript in testpack's list of things to install; by default the latest versions are installed, but those are incompatible.
1 parent 4bbf7fd commit 7077bd1

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sorted-btree",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "A sorted list of key-value pairs in a fast, typed in-memory B+ tree with a powerful API.",
55
"main": "b+tree.js",
66
"typings": "b+tree",
@@ -88,8 +88,8 @@
8888
}
8989
},
9090
"install": [
91-
"ts-jest",
92-
"typescript"
91+
"ts-jest@26.4.3",
92+
"typescript@3.8.3"
9393
],
9494
"verbose": true,
9595
"test-folder": ".testpack",

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,9 @@ Version history
377377

378378
### v1.6.0 ###
379379

380-
- Added optional second parameter `reusedArray` to `nextHigherPair` and `nextLowerPair`
381-
- Optimized
380+
- Added `BTree.getPairOrNextLower` and `BTree.getPairOrNextHigher` methods (PR #23)
381+
- Added optional second parameter `reusedArray` to `nextHigherPair` and `nextLowerPair` (PR #23)
382+
- Optimizations added in `diffAgainst` (PR #24) and `nextLowerPair` (PR #23)
382383

383384
### v1.5.0 ###
384385

0 commit comments

Comments
 (0)