Current section
2 Versions
Jump to
Current section
2 Versions
Compare versions
12
files changed
+154
additions
-25
deletions
| @@ -1,5 +1,5 @@ | |
| 1 1 | name = "gledis" |
| 2 | - version = "0.1.0" |
| 2 | + version = "0.2.0" |
| 3 3 | description = "Gleam Redis client" |
| 4 4 | |
| 5 5 | licences = ["Apache-2.0"] |
| @@ -1,6 +1,6 @@ | |
| 1 1 | {<<"name">>, <<"gledis">>}. |
| 2 2 | {<<"app">>, <<"gledis">>}. |
| 3 | - {<<"version">>, <<"0.1.0">>}. |
| 3 | + {<<"version">>, <<"0.2.0">>}. |
| 4 4 | {<<"description">>, <<"Gleam Redis client">>}. |
| 5 5 | {<<"licenses">>, [<<"Apache-2.0">>]}. |
| 6 6 | {<<"build_tools">>, [<<"gleam">>]}. |
| @@ -22,6 +22,12 @@ | |
| 22 22 | {<<"files">>, [ |
| 23 23 | <<"README.md">>, |
| 24 24 | <<"gleam.toml">>, |
| 25 | + <<"include/gledis_Custom.hrl">>, |
| 26 | + <<"include/gledis_Del.hrl">>, |
| 27 | + <<"include/gledis_Exists.hrl">>, |
| 28 | + <<"include/gledis_Get.hrl">>, |
| 29 | + <<"include/gledis_Keys.hrl">>, |
| 30 | + <<"include/gledis_Set.hrl">>, |
| 25 31 | <<"src/gledis.app.src">>, |
| 26 32 | <<"src/gledis.erl">>, |
| 27 33 | <<"src/gledis.gleam">>, |
| @@ -0,0 +1 @@ | |
| 1 | + -record(custom, {command :: binary(), args :: list(gledis:argument())}). |
| @@ -0,0 +1 @@ | |
| 1 | + -record(del, {key :: binary()}). |
| @@ -0,0 +1 @@ | |
| 1 | + -record(exists, {key :: binary()}). |
Loading more files…