Skip to content

Commit

Permalink
Merge pull request #250 from kommitters/v0.11
Browse files Browse the repository at this point in the history
Release v0.11.1
  • Loading branch information
miguelnietoa authored Oct 13, 2022
2 parents 085e784 + 7269972 commit d196d3a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.11.1 (13.10.2022)
* Fix documentation paths.

## 0.11.0 (13.10.2022)
* Support Signature for the missing signer types: **Hash(x)**, **Ed25519 Signed Payload**.
* Make `SetOptions` operation more user-friendly and descriptive by changing the initialization entries.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ This library is aimed at developers building Elixir applications that interact w
The **Stellar SDK** is composed of two complementary components: **`TxBuild`** + **`Horizon`**.
* **`TxBuild`** - used for [**building transactions.**](#building-transactions)
* **`Horizon`** - used for [**querying Horizon.**](#querying-horizon)
* [**Examples.**](/docs/examples.md)
* [**Examples.**](/docs/README.md)

## Installation
[**Available in Hex**][hex], add `stellar_sdk` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:stellar_sdk, "~> 0.11.0"}
{:stellar_sdk, "~> 0.11.1"}
]
end
```
Expand Down
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Operations

* [Creating an account](/docs/examples/create_account.md)
* [Payments](/docs/examples/payments.md)
* [Creating an account](/docs/examples/operations/create_account.md)
* [Payments](/docs/examples/operations/payments.md)

## Signatures

* [Hash(x) Signature](/docs/examples/hash_x.md)
* [Pre-authorized Transaction Signature](/docs/examples/pre_auth_tx.md)
* [Ed25519 Signed Payload Signature](/docs/examples/ed25519_signed_payload.md)
* [Hash(x) Signature](/docs/examples/signatures/hash_x.md)
* [Pre-authorized Transaction Signature](/docs/examples/signatures/pre_auth_tx.md)
* [Ed25519 Signed Payload Signature](/docs/examples/signatures/ed25519_signed_payload.md)
10 changes: 4 additions & 6 deletions 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.11.0"
@version "0.11.1"

def project do
[
Expand Down Expand Up @@ -132,20 +132,18 @@ defmodule Stellar.MixProject do
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"docs/README.md",
"docs/examples/operations/create_account.md",
"docs/examples/operations/payments.md",
"docs/examples/signatures/hash_x.md",
"docs/examples/signatures/pre_auth_tx.md",
"docs/examples/signatures/ed25519_signed_payload.md"
"docs/examples/signatures/ed25519_signed_payload.md",
"docs/README.md": [filename: "examples"]
]
end

defp groups_for_extras do
[
Examples: ~r/^docs\/README.md/,
Operations: ~r/docs\/examples\/operations\/.?/,
Signatures: ~r/docs\/examples\/signatures\/.?/
Examples: ~r/docs\/examples\/.?/
]
end
end

0 comments on commit d196d3a

Please sign in to comment.