Current section
11 Versions
Jump to
Current section
11 Versions
Compare versions
3
files changed
+5
additions
-5
deletions
| @@ -58,7 +58,7 @@ You can find it: | |
| 58 58 | ## Installation |
| 59 59 | |
| 60 60 | ```elixir |
| 61 | - {:edgebase_admin, "~> 0.2.6"} |
| 61 | + {:edgebase_admin, "~> 0.2.7"} |
| 62 62 | ``` |
| 63 63 | |
| 64 64 | If you consume the monorepo directly, use the path dependency already configured in this repository. |
| @@ -4,7 +4,7 @@ | |
| 4 4 | {<<"Repository">>, |
| 5 5 | <<"https://github.com/edge-base/edgebase/tree/main/packages/sdk/elixir/packages/admin">>}]}. |
| 6 6 | {<<"name">>,<<"edgebase_admin">>}. |
| 7 | - {<<"version">>,<<"0.2.6">>}. |
| 7 | + {<<"version">>,<<"0.2.7">>}. |
| 8 8 | {<<"description">>,<<"EdgeBase admin SDK for Elixir">>}. |
| 9 9 | {<<"elixir">>,<<"~> 1.16">>}. |
| 10 10 | {<<"app">>,<<"edgebase_admin">>}. |
| @@ -17,7 +17,7 @@ | |
| 17 17 | [[{<<"name">>,<<"edgebase_core">>}, |
| 18 18 | {<<"app">>,<<"edgebase_core">>}, |
| 19 19 | {<<"optional">>,false}, |
| 20 | - {<<"requirement">>,<<"~> 0.2.6">>}, |
| 20 | + {<<"requirement">>,<<"~> 0.2.7">>}, |
| 21 21 | {<<"repository">>,<<"hexpm">>}], |
| 22 22 | [{<<"name">>,<<"jason">>}, |
| 23 23 | {<<"app">>,<<"jason">>}, |
| @@ -4,7 +4,7 @@ defmodule EdgeBaseAdmin.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :edgebase_admin, |
| 7 | - version: "0.2.6", |
| 7 | + version: "0.2.7", |
| 8 8 | elixir: "~> 1.16", |
| 9 9 | start_permanent: Mix.env() == :prod, |
| 10 10 | deps: deps(), |
| @@ -23,7 +23,7 @@ defmodule EdgeBaseAdmin.MixProject do | |
| 23 23 | |
| 24 24 | defp deps do |
| 25 25 | [ |
| 26 | - {:edgebase_core, "~> 0.2.6"}, |
| 26 | + {:edgebase_core, "~> 0.2.7"}, |
| 27 27 | {:jason, "~> 1.4"} |
| 28 28 | ] |
| 29 29 | end |