diff --git a/packages/ripple-binary-codec/HISTORY.md b/packages/ripple-binary-codec/HISTORY.md index 52301fc0..b72fcff9 100644 --- a/packages/ripple-binary-codec/HISTORY.md +++ b/packages/ripple-binary-codec/HISTORY.md @@ -1,5 +1,16 @@ # ripple-binary-codec Release History +## 0.3.0 (2020-08-17) + +- Migrate to TypeScript + - Javascript classes used + - Generics for constructing core types +- Reduced dependencies + - Dependent on create-hash, decimal.js, ripple-address-codec +- Migrate testing to Jest and added tests + - Tests for pseudo-transactions +- Added support for NegativeUNL pseudo-transactions + ## 0.2.6 (2019-12-31) - Update dependencies diff --git a/packages/ripple-binary-codec/package.json b/packages/ripple-binary-codec/package.json index 8a9a059d..d05e12d5 100644 --- a/packages/ripple-binary-codec/package.json +++ b/packages/ripple-binary-codec/package.json @@ -3,11 +3,11 @@ "version": "0.3.0", "description": "XRP Ledger binary codec", "files": [ - "distrib/npm/*", + "dist/*", "bin/*", "test/*" ], - "main": "distrib/npm/", + "main": "dist/", "directories": { "test": "test" },