Skip to content

Commit

Permalink
Prepare release v0.5.0 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Odraxs authored May 9, 2023
1 parent c681dff commit 37edd6b
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.0 (09.05.2023)

- [Invoke Contract Function](https://github.com/kommitters/soroban.ex/issues/23)

## 0.4.0 (04.05.2023)

- [Soroban RPC: Simulate, Send & Get transaction](https://github.com/kommitters/soroban.ex/issues/16)
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.4.0"}
{:soroban, "~> 0.5.0"}
]
end
```
Expand Down
38 changes: 36 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.4.0"
@version "0.5.0"
@github_url "https://github.com/kommitters/soroban.ex"

def project do
Expand Down Expand Up @@ -81,7 +81,41 @@ defmodule Soroban.MixProject do
end

defp groups_for_modules do
[]
[
Contract: [
Soroban.Contract,
Soroban.Contract.InvokeHostFunction
],
RPC: [
Soroban.RPC,
Soroban.RPC.Request,
Soroban.RPC.GetTransaction,
Soroban.RPC.GetTransactionResponse,
Soroban.RPC.SendTransaction,
Soroban.RPC.SendTransactionResponse,
Soroban.RPC.SimulateTransaction,
Soroban.RPC.SimulateTransactionResponse,
Soroban.RPC.Error,
Soroban.RPC.HTTPError
],
Types: [
Soroban.Types.Address,
Soroban.Types.Bool,
Soroban.Types.Bytes,
Soroban.Types.Duration,
Soroban.Types.Int32,
Soroban.Types.Int64,
Soroban.Types.Int128,
Soroban.Types.Int256,
Soroban.Types.String,
Soroban.Types.Symbol,
Soroban.Types.TimePoint,
Soroban.Types.UInt32,
Soroban.Types.UInt64,
Soroban.Types.UInt128,
Soroban.Types.UInt256
]
]
end

defp extras() do
Expand Down

0 comments on commit 37edd6b

Please sign in to comment.