Skip to content

Commit

Permalink
Prepare release v0.18.1 (#339)
Browse files Browse the repository at this point in the history
* Prepare release v0.18.1

* Add note of Soroban.ex in the README

---------

Co-authored-by: Miguel Nieto A <39246879+miguelnietoa@users.noreply.github.com>
  • Loading branch information
EdwinGuayacan and miguelnietoa authored Oct 11, 2023
1 parent b13e33a commit cca764a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.18.1 (11.10.2023)

* Add remaining changes for Protocol 20: Soroban.
- Add function to be able to obtain native value from a `SCVal`.
- Fix Horizon API responses related to Effects, Assets, and Soroban Operations.

## 0.18.0 (20.09.2023)

* Add Soroban Preview 11 support.
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ The **Stellar SDK** enables the construction, signing and encoding of Stellar [t

This library is aimed at developers building Elixir applications that interact with the [**Stellar network**][stellar].

> **Note**
> If you are a smart contract developer building on Soroban, we recommend using [Soroban.ex][soroban.ex], a library built on top of Stellar SDK which offers a developer-friendly interface for interacting with Soroban smart contracts and Soroban-RPC server.
#### Protocol Version Support
| Protocol | Version |
| --------- | ------------ |
| 18 | >= v0.8 |
| 19 | >= v0.9 |
| 20 | >= v0.18 |

## Documentation
The **Stellar SDK** is composed of two complementary components: **`TxBuild`** + **`Horizon`**.
Expand All @@ -31,7 +35,7 @@ The **Stellar SDK** is composed of two complementary components: **`TxBuild`** +
```elixir
def deps do
[
{:stellar_sdk, "~> 0.18.0"}
{:stellar_sdk, "~> 0.18.1"}
]
end
```
Expand Down Expand Up @@ -920,3 +924,4 @@ Made with 💙 by [kommitters Open Source](https://kommit.co)
[stellar-cap-27]: https://stellar.org/protocol/cap-27
[stellar-protocol-19]: https://stellar.org/blog/announcing-protocol-19
[stellar-docs-account-seq-num-age]: https://developers.stellar.org/docs/glossary/accounts/#sequence-time-and-ledger
[soroban.ex]: https://github.com/kommitters/soroban.ex
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Stellar.MixProject do
use Mix.Project

@github_url "https://github.com/kommitters/stellar_sdk"
@version "0.18.0"
@version "0.18.1"

def project do
[
Expand Down

0 comments on commit cca764a

Please sign in to comment.