From 39d5cc7e75a60e37d02f3c89f76d91ee538e4d8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rold=C3=A1n?= <62166813+Odraxs@users.noreply.github.com> Date: Thu, 11 May 2023 14:26:06 -0500 Subject: [PATCH] Prepare release v0.6.0 (#57) --- CHANGELOG.md | 6 +++++- README.md | 2 +- mix.exs | 12 ++++++++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d8841..53e118f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## 0.4.0 (09.05.2023) +## 0.6.0 (11.05.2023) + +- [Soroban compound types](https://github.com/kommitters/soroban.ex/issues/43) + +## 0.5.0 (09.05.2023) - [Invoke Contract Function](https://github.com/kommitters/soroban.ex/issues/23) diff --git a/README.md b/README.md index 3a53adb..4baabcf 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add `soroban` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:soroban, "~> 0.5.0"} + {:soroban, "~> 0.6.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 06bf67e..bc1914b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Soroban.MixProject do use Mix.Project - @version "0.5.0" + @version "0.6.0" @github_url "https://github.com/kommitters/soroban.ex" def project do @@ -113,7 +113,15 @@ defmodule Soroban.MixProject do Soroban.Types.UInt32, Soroban.Types.UInt64, Soroban.Types.UInt128, - Soroban.Types.UInt256 + Soroban.Types.UInt256, + Soroban.Types.Vec, + Soroban.Types.Tuple, + Soroban.Types.MapEntry, + Soroban.Types.Map, + Soroban.Types.Enum, + Soroban.Types.StructField, + Soroban.Types.Struct, + Soroban.Types.Option ] ] end