Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 4c78701

Browse files
committed
Release v0.17.0
1 parent bdb0345 commit 4c78701

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps.
44

55
## Next version
66

7+
## 0.17.0
8+
9+
- [CAP-33 Sponsored Reserves](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0033.md)
10+
Provides the ability for an account to sponsor the reserves of another account, and for the sponsored account
11+
to revoke the sponsorship.
12+
- [SEP-29 Account Memo Requirement](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0029.md)
13+
When a payment does not contain a memo, a pre-check is made to ensure the recpient accounts do not require a memo to be set.
14+
This behaviour can be overrideen.
15+
- Fixes parsing errors for [esoteric memo_text encodings](https://horizon.stellar.org/transactions/d58ce29002f385774ced32898f6efcfe196e271db6ef0e63865bd868cc3cf329).
16+
17+
718
## 0.16.0
819

920
- [CAP-23 Two-Part Payments](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0023.md)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
![Build](https://github.com/Synesso/scala-stellar-sdk/workflows/Build/badge.svg?branch=master)
44
[![Coverage](https://img.shields.io/codecov/c/gh/Synesso/scala-stellar-sdk.svg)](https://codecov.io/gh/Synesso/scala-stellar-sdk)
55
[![Issues](https://img.shields.io/github/issues/Synesso/scala-stellar-sdk.svg)](https://github.com/Synesso/scala-stellar-sdk/issues)
6-
![Supports Stellar Horizon v1.6.0](https://img.shields.io/badge/Horizon-v1.6.0-blue.svg)
7-
![Supports Stellar Core v14](https://img.shields.io/badge/Core-v14-blue.svg)
6+
![Supports Stellar Horizon v1.12.0](https://img.shields.io/badge/Horizon-v1.12.0-blue.svg)
7+
![Supports Stellar Core v15](https://img.shields.io/badge/Core-v15-blue.svg)
88
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-brightgreen.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
99

1010
With the Stellar SDK for Scala, you can perform [Stellar](https://stellar.org/) operations from your Scala application. It provides the ability to access Stellar networks via any Horizon instance to build and submit transactions, query the state of the network and stream updates. You'll like this SDK, because it provides a more natural API for Scala developers than the official Java SDK.
@@ -18,7 +18,7 @@ Add the JitPack & jcenter resolvers and the [latest dependency](https://jitpack.
1818
```scala
1919
resolvers += "jitpack" at "https://jitpack.io"
2020
resolvers += Resolver.jcenterRepo
21-
libraryDependencies += "com.github.synesso" %% "scala-stellar-sdk" % "0.16.0"
21+
libraryDependencies += "com.github.synesso" %% "scala-stellar-sdk" % "0.17.0"
2222
```
2323

2424
From there, it is a simple affair to create and fund a new account on the test network.

0 commit comments

Comments
 (0)