release: xrpl@3.0.0-beta.1 and friends (#2592)

Release beta versions of all the packages and fix history file version numbers for first beta.
This commit is contained in:
Caleb Kniffen
2023-11-30 16:57:44 -06:00
parent 38b385969b
commit 63c71a162d
354 changed files with 4725 additions and 2665 deletions

View File

@@ -4,6 +4,8 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
## Unreleased
## 3.0.0 Beta 1 (2023-11-30)
### Breaking Changes
* `Transaction` type has been redefined to include all transactions and `SubmittableTransaction` was created to define the old value. The following functions which only handle transactions to be submitted now use `SubmittableTransaction`:
* `Client.autofill`
@@ -23,7 +25,7 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
* `convertHexToString` in favor of `@xrplf/isomorphic/utils`'s `hexToString`
* `convertStringToHex` in favor of `@xrplf/isomorphic/utils`'s `stringToHex`
## 3.0.0 Beta 1 (2023-10-19)
## 3.0.0 Beta 0 (2023-10-19)
### Breaking Changes
* Bump typescript to 5.x

View File

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