Skip to content

Commit

Permalink
core: add CHANGELOG.md and update version in gradle files (#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban authored Feb 8, 2023
1 parent d3d06ab commit ff63bec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## Unreleased

## 1.0.12

### Updates

* Support for accepting `refund_memo` and `refund_memo_type` parameters in SEP-24 `POST /transactions/withdraw/interactive` requests
* Add the following methods to `org.stellar.anchor.model.Sep24Transaction` interface:
* `String getRefundMemo()`
* `void setRefundMemo(String refundMemo)`
* `String getRefundMemoType()`
* `void setRefundMemoType(String refundMemoType)`
* `Sep24Service.withdraw()` accepts the `refund_memo` & `refund_memo_type` parameters and assigns the values using the `setRefundMemo()` and `setRefundMemoType()` methods.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("org.jetbrains.kotlin.jvm") version "1.6.10"
}

version = "1.0.11"
version = "1.0.12"

dependencies {
compileOnly(libs.servlet.api)
Expand Down

0 comments on commit ff63bec

Please sign in to comment.