Publish 1.0.0-rc1 (#93)

* Prepare to release rc1 of ripple-binary-codec v1.0.0
This commit is contained in:
Nathan Nichols
2020-08-18 12:56:43 -05:00
parent 1ca8be159b
commit 1c273ce427
3 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# ripple-binary-codec Release History # ripple-binary-codec Release History
## 0.3.0 (2020-08-17) ## 1.0.0-rc1 (2020-08-17)
- Migrate to TypeScript - Migrate to TypeScript
- Javascript classes used - Javascript classes used

View File

@@ -1,6 +1,6 @@
{ {
"name": "ripple-binary-codec", "name": "ripple-binary-codec",
"version": "0.3.0", "version": "1.0.0",
"description": "XRP Ledger binary codec", "description": "XRP Ledger binary codec",
"files": [ "files": [
"dist/*", "dist/*",

View File

@@ -41,7 +41,6 @@ class UInt32 extends UInt {
return new UInt32(buf); return new UInt32(buf);
} }
console.log(typeof val);
throw new Error("Cannot construct UInt32 from given value"); throw new Error("Cannot construct UInt32 from given value");
} }