From d4049152283043ee3694993675612325542efe8d Mon Sep 17 00:00:00 2001 From: Juan Hurtado Date: Mon, 14 Mar 2022 14:51:40 -0500 Subject: [PATCH] Prepare release for v0.4 (#126) * Prepare release for v0.4 --- CHANGELOG.md | 7 +++++++ README.md | 3 ++- mix.exs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c863d2ba..81398186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 6a9f3213..2ff927e8 100644 --- a/README.md +++ b/README.md @@ -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 ``` @@ -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{ diff --git a/mix.exs b/mix.exs index b5f41c99..1dceeb2e 100644 --- a/mix.exs +++ b/mix.exs @@ -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 [