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

Commit

Permalink
Release v0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Synesso committed Nov 30, 2020
1 parent bdb0345 commit 4c78701
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps.

## Next version

## 0.17.0

- [CAP-33 Sponsored Reserves](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0033.md)
Provides the ability for an account to sponsor the reserves of another account, and for the sponsored account
to revoke the sponsorship.
- [SEP-29 Account Memo Requirement](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0029.md)
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.
This behaviour can be overrideen.
- Fixes parsing errors for [esoteric memo_text encodings](https://horizon.stellar.org/transactions/d58ce29002f385774ced32898f6efcfe196e271db6ef0e63865bd868cc3cf329).


## 0.16.0

- [CAP-23 Two-Part Payments](https://github.com/stellar/stellar-protocol/blob/master/core/cap-0023.md)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
![Build](https://github.com/Synesso/scala-stellar-sdk/workflows/Build/badge.svg?branch=master)
[![Coverage](https://img.shields.io/codecov/c/gh/Synesso/scala-stellar-sdk.svg)](https://codecov.io/gh/Synesso/scala-stellar-sdk)
[![Issues](https://img.shields.io/github/issues/Synesso/scala-stellar-sdk.svg)](https://github.com/Synesso/scala-stellar-sdk/issues)
![Supports Stellar Horizon v1.6.0](https://img.shields.io/badge/Horizon-v1.6.0-blue.svg)
![Supports Stellar Core v14](https://img.shields.io/badge/Core-v14-blue.svg)
![Supports Stellar Horizon v1.12.0](https://img.shields.io/badge/Horizon-v1.12.0-blue.svg)
![Supports Stellar Core v15](https://img.shields.io/badge/Core-v15-blue.svg)
[![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)

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.
Expand All @@ -18,7 +18,7 @@ Add the JitPack & jcenter resolvers and the [latest dependency](https://jitpack.
```scala
resolvers += "jitpack" at "https://jitpack.io"
resolvers += Resolver.jcenterRepo
libraryDependencies += "com.github.synesso" %% "scala-stellar-sdk" % "0.16.0"
libraryDependencies += "com.github.synesso" %% "scala-stellar-sdk" % "0.17.0"
```

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

0 comments on commit 4c78701

Please sign in to comment.