Packages
spawn_statestores_postgres
2.0.0-RC4
2.0.0-RC9
2.0.0-RC8
2.0.0-RC7
2.0.0-RC6
2.0.0-RC5
2.0.0-RC4
2.0.0-RC3
2.0.0-RC2
2.0.0-RC14
2.0.0-RC13
2.0.0-RC12
2.0.0-RC11
2.0.0-RC10
2.0.0-RC1
1.4.3
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-rc4
1.0.0-rc3
1.0.0-rc2
1.0.0-rc16
1.0.0-rc13
1.0.0-rc1
1.0.0-rc.38
1.0.0-rc.37
1.0.0-rc.36
1.0.0-rc.35
1.0.0-rc.34
1.0.0-rc.33
1.0.0-rc.32
1.0.0-rc.31
1.0.0-rc.30
1.0.0-rc.29
1.0.0-rc.28
1.0.0-rc.27
1.0.0-rc.26
1.0.0-rc.25
1.0.0-rc.24
1.0.0-rc.23
1.0.0-rc.22
1.0.0-rc.21
1.0.0-rc.20
1.0.0-rc.19
1.0.0-rc.18
1.0.0-rc.17
0.6.3
0.6.2
0.6.1
0.6.0
0.5.5
0.5.4
0.5.3
0.5.1
0.5.0
0.5.0-rc.13
0.5.0-rc.12
0.5.0-rc.11
0.5.0-rc.10
0.5.0-rc.9
0.5.0-rc.8
0.5.0-rc.7
0.5.0-rc.6
0.5.0-rc.5
0.5.0-rc.3
0.5.0-alpha.13
0.5.0-alpha.12
0.5.0-alpha.11
0.5.0-alpha.10
0.5.0-alpha.9
0.5.0-alpha.6
0.5.0-alpha.5
0.5.0-alpha.4
0.5.0-alpha.3
0.5.0-alpha.2
0.5.0-alpha.1
Spawn Statestores Postgres is a storage lib for the Spawn Actors System
Current section
87 Versions
Jump to
Current section
87 Versions
Compare versions
2
files changed
+6
additions
-6
deletions
| @@ -2,16 +2,16 @@ | |
| 2 2 | [{<<"GitHub">>, |
| 3 3 | <<"https://github.com/eigr/spawn/blob/main/spawn_statestores/statestores_postgres">>}]}. |
| 4 4 | {<<"name">>,<<"spawn_statestores_postgres">>}. |
| 5 | - {<<"version">>,<<"2.0.0-RC3">>}. |
| 5 | + {<<"version">>,<<"2.0.0-RC4">>}. |
| 6 6 | {<<"description">>, |
| 7 7 | <<"Spawn Statestores Postgres is a storage lib for the Spawn Actors System">>}. |
| 8 8 | {<<"elixir">>,<<"~> 1.15">>}. |
| 9 9 | {<<"app">>,<<"spawn_statestores_postgres">>}. |
| 10 10 | {<<"files">>, |
| 11 11 | [<<"lib">>,<<"lib/statestores">>,<<"lib/statestores/adapters">>, |
| 12 | - <<"lib/statestores/adapters/postgres_snapshot_adapter.ex">>, |
| 12 | + <<"lib/statestores/adapters/postgres_lookup_adapter.ex">>, |
| 13 13 | <<"lib/statestores/adapters/postgres_projection_adapter.ex">>, |
| 14 | - <<"lib/statestores/adapters/postgres_lookup_adapter.ex">>,<<"mix.exs">>, |
| 14 | + <<"lib/statestores/adapters/postgres_snapshot_adapter.ex">>,<<"mix.exs">>, |
| 15 15 | <<"README.md">>,<<"LICENSE">>]}. |
| 16 16 | {<<"licenses">>,[<<"Apache-2.0">>]}. |
| 17 17 | {<<"requirements">>, |
| @@ -33,6 +33,6 @@ | |
| 33 33 | [{<<"name">>,<<"spawn_statestores">>}, |
| 34 34 | {<<"app">>,<<"spawn_statestores">>}, |
| 35 35 | {<<"optional">>,false}, |
| 36 | - {<<"requirement">>,<<"2.0.0-RC3">>}, |
| 36 | + {<<"requirement">>,<<"2.0.0-RC4">>}, |
| 37 37 | {<<"repository">>,<<"hexpm">>}]]}. |
| 38 38 | {<<"build_tools">>,[<<"mix">>]}. |
| @@ -2,7 +2,7 @@ defmodule StatestoresPostgres.MixProject do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @app :spawn_statestores_postgres |
| 5 | - @version "2.0.0-RC3" |
| 5 | + @version "2.0.0-RC4" |
| 6 6 | @source_url "https://github.com/eigr/spawn/blob/main/spawn_statestores/statestores_postgres" |
| 7 7 | |
| 8 8 | def project do |
| @@ -59,7 +59,7 @@ defmodule StatestoresPostgres.MixProject do | |
| 59 59 | {:ecto_sql, "~> 3.12"}, |
| 60 60 | {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, |
| 61 61 | {:postgrex, "~> 0.17"}, |
| 62 | - {:spawn_statestores, "2.0.0-RC3"} |
| 62 | + {:spawn_statestores, "2.0.0-RC4"} |
| 63 63 | ] |
| 64 64 | end |