Skip to content

Commit

Permalink
Prepare release for v0.4 (#126)
Browse files Browse the repository at this point in the history
* Prepare release for v0.4
  • Loading branch information
Juan Hurtado authored Mar 14, 2022
1 parent 79c25d8 commit d404915
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.4.0 (11.03.2022)
* Compose functional Horizon requests.
* Build structures for Horizon resources.
* Build structures for all the operation types.
* Implement functions to consume Horizon endpoints.
* Querying Horizon docs.

## 0.3.0 (11.02.2022)
* CAP-0027 Add suport for multiplexed accounts.

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This library is aimed at developers building Elixir applications that interact w
```elixir
def deps do
[
{:stellar_sdk, "~> 0.3.0"}
{:stellar_sdk, "~> 0.4.0"}
]
end
```
Expand Down Expand Up @@ -369,6 +369,7 @@ To make it possible to explore the millions of records for resources like transa

A group of records is called a **collection**, records are returned as a list in the [**Stellar.Horizon.Collection**](https://hexdocs.pm/stellar_sdk/Stellar.Horizon.Collection.html#content) structure. To move between pages of a collection of records, use the `next` and `prev` attributes.


```elixir
{:ok,
%Stellar.Horizon.Collection{
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.3.0"
@version "0.4.0"

def project do
[
Expand Down

0 comments on commit d404915

Please sign in to comment.