release 3.1.0 (#2703)

* update HISTORYs

* update HISTORY for isomorphic

* update package.json
This commit is contained in:
Omar Khan
2024-06-03 16:33:06 -04:00
committed by GitHub
parent 32f0d7b121
commit 92849e57ce
7 changed files with 22 additions and 15 deletions

18
package-lock.json generated
View File

@@ -15304,7 +15304,7 @@
},
"packages/isomorphic": {
"name": "@xrplf/isomorphic",
"version": "1.0.0",
"version": "1.0.1",
"license": "ISC",
"dependencies": {
"@noble/hashes": "^1.0.0",
@@ -15331,10 +15331,10 @@
}
},
"packages/ripple-binary-codec": {
"version": "2.0.0",
"version": "2.1.0",
"license": "ISC",
"dependencies": {
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"bignumber.js": "^9.0.0",
"ripple-address-codec": "^5.0.0"
},
@@ -15364,18 +15364,18 @@
}
},
"packages/xrpl": {
"version": "3.0.0",
"version": "3.1.0",
"license": "ISC",
"dependencies": {
"@scure/bip32": "^1.3.1",
"@scure/bip39": "^1.2.1",
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"@xrplf/secret-numbers": "^1.0.0",
"bignumber.js": "^9.0.0",
"cross-fetch": "^4.0.0",
"eventemitter3": "^5.0.1",
"ripple-address-codec": "^5.0.0",
"ripple-binary-codec": "^2.0.0",
"ripple-binary-codec": "^2.1.0",
"ripple-keypairs": "^2.0.0"
},
"devDependencies": {
@@ -25379,7 +25379,7 @@
"ripple-binary-codec": {
"version": "file:packages/ripple-binary-codec",
"requires": {
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"bignumber.js": "^9.0.0",
"ripple-address-codec": "^5.0.0"
}
@@ -27199,7 +27199,7 @@
"@scure/bip32": "^1.3.1",
"@scure/bip39": "^1.2.1",
"@types/node": "^16.18.38",
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"@xrplf/secret-numbers": "^1.0.0",
"bignumber.js": "^9.0.0",
"cross-fetch": "^4.0.0",
@@ -27212,7 +27212,7 @@
"lodash": "^4.17.4",
"react": "^18.2.0",
"ripple-address-codec": "^5.0.0",
"ripple-binary-codec": "^2.0.0",
"ripple-binary-codec": "^2.1.0",
"ripple-keypairs": "^2.0.0",
"run-s": "^0.0.0",
"typedoc": "0.25.0",

View File

@@ -2,6 +2,8 @@
## Unreleased
## 1.0.1 (2024-06-03)
### Fixed
* Throw error if `hexToBytes` or `hexToString` is provided a string that is not in hex

View File

@@ -1,6 +1,6 @@
{
"name": "@xrplf/isomorphic",
"version": "1.0.0",
"version": "1.0.1",
"description": "A collection of isomorphic and tree-shakeable crypto hashes and utils for xrpl.js",
"keywords": [
"crypto",

View File

@@ -2,6 +2,8 @@
## Unreleased
## 2.1.0 (2024-06-03)
### Added
* Support for the Price Oracles amendment (XLS-47).

View File

@@ -1,6 +1,6 @@
{
"name": "ripple-binary-codec",
"version": "2.0.0",
"version": "2.1.0",
"description": "XRP Ledger binary codec",
"files": [
"dist/*",
@@ -11,7 +11,7 @@
"test": "test"
},
"dependencies": {
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"bignumber.js": "^9.0.0",
"ripple-address-codec": "^5.0.0"
},

View File

@@ -3,6 +3,9 @@
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
## 3.1.0 (2024-06-03)
### BREAKING CHANGES
* Small fix in the API to use a new flag name `tfNoDirectRipple` instead of the existing flag name `tfNoRippleDirect`

View File

@@ -1,6 +1,6 @@
{
"name": "xrpl",
"version": "3.0.0",
"version": "3.1.0",
"license": "ISC",
"description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
"files": [
@@ -24,13 +24,13 @@
"dependencies": {
"@scure/bip32": "^1.3.1",
"@scure/bip39": "^1.2.1",
"@xrplf/isomorphic": "^1.0.0",
"@xrplf/isomorphic": "^1.0.1",
"@xrplf/secret-numbers": "^1.0.0",
"bignumber.js": "^9.0.0",
"cross-fetch": "^4.0.0",
"eventemitter3": "^5.0.1",
"ripple-address-codec": "^5.0.0",
"ripple-binary-codec": "^2.0.0",
"ripple-binary-codec": "^2.1.0",
"ripple-keypairs": "^2.0.0"
},
"devDependencies": {