From 1c273ce427e3b60747fffd6586bfaa8a76cbc250 Mon Sep 17 00:00:00 2001 From: Nathan Nichols Date: Tue, 18 Aug 2020 12:56:43 -0500 Subject: [PATCH] Publish 1.0.0-rc1 (#93) * Prepare to release rc1 of ripple-binary-codec v1.0.0 --- packages/ripple-binary-codec/HISTORY.md | 2 +- packages/ripple-binary-codec/package.json | 2 +- packages/ripple-binary-codec/src/types/uint-32.ts | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/ripple-binary-codec/HISTORY.md b/packages/ripple-binary-codec/HISTORY.md index b72fcff9..e72278f2 100644 --- a/packages/ripple-binary-codec/HISTORY.md +++ b/packages/ripple-binary-codec/HISTORY.md @@ -1,6 +1,6 @@ # ripple-binary-codec Release History -## 0.3.0 (2020-08-17) +## 1.0.0-rc1 (2020-08-17) - Migrate to TypeScript - Javascript classes used diff --git a/packages/ripple-binary-codec/package.json b/packages/ripple-binary-codec/package.json index d05e12d5..4a534328 100644 --- a/packages/ripple-binary-codec/package.json +++ b/packages/ripple-binary-codec/package.json @@ -1,6 +1,6 @@ { "name": "ripple-binary-codec", - "version": "0.3.0", + "version": "1.0.0", "description": "XRP Ledger binary codec", "files": [ "dist/*", diff --git a/packages/ripple-binary-codec/src/types/uint-32.ts b/packages/ripple-binary-codec/src/types/uint-32.ts index 1307e8ce..4487ab2a 100644 --- a/packages/ripple-binary-codec/src/types/uint-32.ts +++ b/packages/ripple-binary-codec/src/types/uint-32.ts @@ -41,7 +41,6 @@ class UInt32 extends UInt { return new UInt32(buf); } - console.log(typeof val); throw new Error("Cannot construct UInt32 from given value"); }