Release xrpl packages (#2021)

* Update HISTORY.md for release
* Run docgen
This commit is contained in:
Jackson Mills
2022-06-02 11:03:56 -07:00
committed by GitHub
parent f5b2d71cd7
commit 4fddd8f41d
171 changed files with 1433 additions and 1370 deletions

View File

@@ -3,10 +3,16 @@
Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xrpl-announce) for release announcements. We recommend that xrpl.js (ripple-lib) users stay up-to-date with the latest stable release.
## Unreleased
## 2.3.0 (2022-06-02)
### Added
* Sourcemap generation for browser bundle
* Exported the AccountOffer interface
### Fixed
* Client.disconnect() now stops the heartbeat health check as well
* Updated dependencies which had a warning when running `npm audit`
* Infinite error/reconnect in browser if an exception was raised during the initial websocket connection event.
* Infinite error/reconnect in browser if an exception was raised during the initial websocket connection event
* Errors during reliable submission with no error message now properly show the preliminary result instead of a type error
* Fixed serialize/deserialize verification bug in `Wallet.sign()` when signing a non-XRP Payment with an amount that contains trailing insignificant zeros
* Allow lowercase hex values for `NFTokenMint.URI`

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "2.2.3",
"version": "2.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "2.2.3",
"version": "2.3.0",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
"files": [
@@ -27,7 +27,7 @@
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.4",
"ripple-address-codec": "^4.2.4",
"ripple-binary-codec": "^1.4.0",
"ripple-binary-codec": "^1.4.1",
"ripple-keypairs": "^1.1.4",
"ws": "^8.2.2"
},