Packages
Spawn Statestores Native is a storage lib for the Spawn Actors System using Mnesia
Current section
25 Versions
Jump to
Current section
25 Versions
Compare versions
2
files changed
+6
additions
-6
deletions
| @@ -2,7 +2,7 @@ | |
| 2 2 | {<<"build_tools">>,[<<"mix">>]}. |
| 3 3 | {<<"description">>, |
| 4 4 | <<"Spawn Statestores Native is a storage lib for the Spawn Actors System using Mnesia">>}. |
| 5 | - {<<"elixir">>,<<"~> 1.14">>}. |
| 5 | + {<<"elixir">>,<<"~> 1.15">>}. |
| 6 6 | {<<"files">>, |
| 7 7 | [<<"lib">>,<<"lib/statestores">>,<<"lib/statestores/adapters">>, |
| 8 8 | <<"lib/statestores/adapters/native_lookup_adapter.ex">>, |
| @@ -27,5 +27,5 @@ | |
| 27 27 | {<<"name">>,<<"spawn_statestores">>}, |
| 28 28 | {<<"optional">>,false}, |
| 29 29 | {<<"repository">>,<<"hexpm">>}, |
| 30 | - {<<"requirement">>,<<"1.2.1">>}]]}. |
| 31 | - {<<"version">>,<<"1.2.1">>}. |
| 30 | + {<<"requirement">>,<<"1.2.2">>}]]}. |
| 31 | + {<<"version">>,<<"1.2.2">>}. |
| @@ -2,7 +2,7 @@ defmodule StatestoresNative.MixProject do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @app :spawn_statestores_native |
| 5 | - @version "1.2.1" |
| 5 | + @version "1.2.2" |
| 6 6 | @source_url "https://github.com/eigr/spawn/blob/main/spawn_statestores/statestores_native" |
| 7 7 | |
| 8 8 | def project do |
| @@ -17,7 +17,7 @@ defmodule StatestoresNative.MixProject do | |
| 17 17 | config_path: "../../config/config.exs", |
| 18 18 | deps_path: "../../deps", |
| 19 19 | lockfile: "../../mix.lock", |
| 20 | - elixir: "~> 1.14", |
| 20 | + elixir: "~> 1.15", |
| 21 21 | start_permanent: Mix.env() == :prod, |
| 22 22 | deps: deps(), |
| 23 23 | elixirc_paths: elixirc_paths(Mix.env()), |
| @@ -58,7 +58,7 @@ defmodule StatestoresNative.MixProject do | |
| 58 58 | [ |
| 59 59 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, |
| 60 60 | {:mnesiac, "~> 0.3"}, |
| 61 | - {:spawn_statestores, "1.2.1"} |
| 61 | + {:spawn_statestores, "1.2.2"} |
| 62 62 | ] |
| 63 63 | end |