Skip to content

Commit

Permalink
Prepare release v0.9.3 (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelnietoa authored Sep 5, 2022
1 parent a8c5789 commit cba523b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.9.3 (05.09.2022)
* Fix bug in `SetOptions` when setting a signer.
* Fix bug in `TimeBounds` to allow backward compatibility (merged with preconditions).

## 0.9.2 (09.08.2022)
* Fix preconditions to allow minimum sequence number field to be optional.
* Add stellar protocol 19 documentation.
Expand All @@ -13,7 +17,7 @@
* Add CAP-21 preconditions for transaction attributes.
* Add CAP-40 decorate signature hint and support for signed payload signature.
* Refactor signer key signatures implementation.
* Remove unused alias in tests and fix documentation examples.
* Remove unused alias in tests and fix documentation examples.
* Add Trade Agreggations endpoint.

## 0.8.1 (28.07.2022)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ 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].

#### Protocol Version Support
| Protocol | Version |
| Protocol | Version |
| --------- | ------------ |
| 18 | >= v0.8 |
| 19 | >= v0.9 |
Expand All @@ -27,7 +27,7 @@ The **Stellar SDK** is composed of two complementary components: **`TxBuild`** +
```elixir
def deps do
[
{:stellar_sdk, "~> 0.9.2"}
{:stellar_sdk, "~> 0.9.3"}
]
end
```
Expand Down
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.9.2"
@version "0.9.3"

def project do
[
Expand Down

0 comments on commit cba523b

Please sign in to comment.