From c0ff8605531561b86cb44f507eb19ddb3019e28f Mon Sep 17 00:00:00 2001 From: Valentin Balaschenko <13349202+vlntb@users.noreply.github.com> Date: Mon, 27 Jan 2025 21:00:53 +0000 Subject: [PATCH] Set version to 2.3.1-rc1 --- RELEASENOTES.md | 54 ++++++++++++++++++++++++++++++ src/libxrpl/protocol/BuildInfo.cpp | 2 +- 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c6e8266e348..ec716008dba 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -6,6 +6,60 @@ This document contains the release notes for `rippled`, the reference server imp Have new ideas? Need help with setting up your node? [Please open an issue here](https://github.com/xrplf/rippled/issues/new/choose). +# Version 2.3.1 + +Version 2.3.1 of `rippled`, the reference server implementation of the XRP Ledger protocol, is now available. +This is a hotfix release that includes the following updates: +- A fix for an erroneous high fee penalty that peers could incur for sending older transactions; +- Updates to the fees charged for imposing a load on the server; +- A fix to prevent the relaying of internal pseudo-transactions; +- Improved logging. + +[Sign Up for Future Release Announcements](https://groups.google.com/g/ripple-server) + + + +## Action Required + +If you run an XRP Ledger validator, upgrade to version 2.3.1 as soon as possible to ensure stable and uninterrupted network behavior. + +## Changelog + +### Amendments and New Features + +- None + +### Bug Fixes and Performance Improvements + +- Change the charged fee for sending older transactions from feeInvalidSignature to feeUnwantedData. [#5243](https://github.com/XRPLF/rippled/pull/5243) + +### Docs and Build System + +- None + +### GitHub + +The public source code repository for `rippled` is hosted on GitHub at . + +We welcome all contributions and invite everyone to join the community of XRP Ledger developers to help build the Internet of Value. + + +## Credits + +The following people contributed directly to this release: + +Ed Hennis +JoelKatz +Sophia Xie <106177003+sophiax851@users.noreply.github.com> +Valentin Balaschenko <13349202+vlntb@users.noreply.github.com> + + +Bug Bounties and Responsible Disclosures: + +We welcome reviews of the `rippled` code and urge researchers to responsibly disclose any issues they may find. + +To report a bug, please send a detailed report to: + # Version 2.3.0 Version 2.3.0 of `rippled`, the reference server implementation of the XRP Ledger protocol, is now available. This release includes 8 new amendments, including Multi-Purpose Tokens, Credentials, Clawback support for AMMs, and the ability to make offers as part of minting NFTs. Additionally, this release includes important fixes for stability, so server operators are encouraged to upgrade as soon as possible. diff --git a/src/libxrpl/protocol/BuildInfo.cpp b/src/libxrpl/protocol/BuildInfo.cpp index 995df262885..af5bf4ef33b 100644 --- a/src/libxrpl/protocol/BuildInfo.cpp +++ b/src/libxrpl/protocol/BuildInfo.cpp @@ -33,7 +33,7 @@ namespace BuildInfo { // and follow the format described at http://semver.org/ //------------------------------------------------------------------------------ // clang-format off -char const* const versionString = "2.3.0" +char const* const versionString = "2.3.1-rc1" // clang-format on #if defined(DEBUG) || defined(SANITIZER)