Skip to content

Commit 03156de

Browse files
committed
version
1 parent 9ce9bfc commit 03156de

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@orbitdb/ordered-keyvalue-db",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Ordered keyvalue database type for orbit-db.",
55
"author": "Julien Jean Malard-Adam",
66
"keywords": [

src/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ export const getScalePosition = async ({
4040
// Insert to end of list if there is no following entry, or somewhere between adjacent entries
4141
return nextScalePosition === undefined
4242
? previousScalePosition + Math.random()
43-
: previousScalePosition + (nextScalePosition - previousScalePosition) * Math.random();
43+
: previousScalePosition +
44+
(nextScalePosition - previousScalePosition) * Math.random();
4445
};

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = "1.3.2";
2+
export const version = "1.3.3";

0 commit comments

Comments
 (0)