Releases: aurora-rs/stellar-base-rs
Releases · aurora-rs/stellar-base-rs
Release v0.6.0
Added
- Add tests for
BeginSponsoringFutureReservesOperation
- Add
ChangeTrustAsset
- Add
ClawbackOperation
- Add
ClawbackClaimableBalanceOperation
- Add
LiquidityPoolDepositOperation
- Add
LiquidityPoolWithdrawOperation
- Add
LiquidityPool
to theLedgerKey
enum - Add
SetTrustlineFlagsOperation
- Add support for revoking liquidity pool sponsorship to
RevokeSponsorshipOperation
- Add
AUTH_CLAWBACK_ENABLED
toAccountFlags
- Add
TRUSTLINE_CLAWBACK_ENABLED
toTrustLineFlags
- Add
TrustlineAsset
- Add
InvalidLiquidityPoolIdLength
toError
- Add
LedgerKey::LiquidityPool
- Add
LiquidityPoolId
- Add
LiquidityPoolConstantFeeParameters
- Add
LiquidityPoolConstantFee
- Add
LiquidityPool
- Add
InnerOperationResult::ClaimClaimableBalance
- Add
InnerOperationResult::Clawback
- Add
InnerOperationResult::ClawbackClaimableBalance
- Add
InnerOperationResult::SetTrustLineFlags
- Add
InnerOperationResult::LiquidityPoolDeposit
- Add
InnerOperationResult::LiquidityPoolWithdraw
- Add
InnerTransactionResult::FeeBumpInnerSuccess
- Add
InnerTransactionResult::FeeBumpInnerFailed
Changed
- BREAKING: Use
ChangeTrustAsset
forChangeTrust
operation - BREAKING: Use
TrustLineAsset
instead ofAsset
inLedgerKey::Trustline
- BREAKING: Update
xdr_generated.rs
from the current stellar X files. - BREAKING: Use traits from the
ed25519
crate to allow using any ed25519
backend (libsodium, dalek, etc or even a custom signing implementation). The
use of sodiumoxide is now behind the featuresodium_oxide
, which is enabled
by default. - Update dependency's versions
Fixed
- Fix
ChangeTrustOperationBuilder
to allow explicitly passing limit 0.
Release v0.5.0
Added
- Add support for CAP-0023.
- Add
CreateClaimableBalanceOperation
. - Add
ClaimClaimableBalanceOperation
. - Add
Claimant
andClaimPredicate
. - Add
BeginSponsoringFutureReservesOperation
. - Add
EndSponsoringFutureReservesOperation
. - Add
RevokeSponsorshipOperation
. - Add
TransactionResult
andOperationResult
.
Release v0.5.0-beta.2
release: v0.5.0-beta.2 Signed-off-by: Francesco Ceccon <[email protected]>
Release v0.5.0-beta.1
release: v0.5.0-beta.1 Signed-off-by: Francesco Ceccon <[email protected]>
Release v0.5.0-beta.0
release: v0.5.0-beta.0 Signed-off-by: Francesco Ceccon <[email protected]>
Release v0.4.1
Added
PublicKey
implementsDisplay
andFromStr
.
Release v0.4.0
Added
- Add
sign_hashx
anddecorated_signature_from_preimage
to
FeeBumpTransaction
andTransactionEnvelope
.
Changed
- Rename
TransactionBuilder::to_transaction
to
TransactionBuilder::into_transaction
.
Release v0.3.0
Added
- Add
Signer
andSignerKey
related methods.
Changed
- Change
PreAuthTxHash
struct. - Change
HashX
struct.
Release v0.2.0
Added
- Add several mutable accessors to structs fields.
Changed
- Rename enum accessors to
as_
. - Move builders inside structs.