release 2.9.1 (#2391)

This commit is contained in:
pdp2121
2023-07-18 16:29:32 -04:00
committed by GitHub
parent d158770c24
commit 5ec6729c61
302 changed files with 3145 additions and 4132 deletions

View File

@@ -2,6 +2,10 @@
## Unreleased
## 1.7.1 (2023-07-18)
### Fixed
* Passing Definitions from `STObject` to `STArray` back to `STObject`, both for signing & decoding (to JSON)
## 1.7.0 (2023-07-12)
### Added
* `NetworkId` field support

View File

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

View File

@@ -3,6 +3,10 @@
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.9.1 (2023-07-18)
### Fixed
* Passing Definitions from `STObject` to `STArray` back to `STObject`, both for signing & decoding (to JSON)
## 2.9.0 (2023-07-12)
### Added
@@ -23,7 +27,6 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
### Fixed
* `getNFTokenID` now also accepts metadata from `tx` in binary format
* Passing Definitions from `STObject` to `STArray` back to `STObject`, both for signing & decoding (to JSON)
* Allowing the removal of a signer list
* Importing `Wallet` as a named import.

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "2.9.0",
"version": "2.9.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "2.9.0",
"version": "2.9.1",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
"files": [
@@ -28,7 +28,7 @@
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.4",
"ripple-address-codec": "^4.3.0",
"ripple-binary-codec": "^1.7.0",
"ripple-binary-codec": "^1.7.1",
"ripple-keypairs": "^1.3.0",
"ws": "^8.2.2"
},