Skip to content

Commit

Permalink
Prepare release v0.6.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Odraxs authored May 11, 2023
1 parent 3b007ed commit 39d5cc7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
12 changes: 10 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 39d5cc7

Please sign in to comment.