diff --git a/hex.pm.md b/hex.pm.md new file mode 100644 index 0000000..e63de30 --- /dev/null +++ b/hex.pm.md @@ -0,0 +1,10 @@ +# About Hex.pm Releases + +Releases of [esqlite on hex.pm](https://hex.pm/packages/esqlite) are managed by Michael Ries ([@mmmries](https://github.com/mmmries)) and Eric Scouten ([@scouten](https://github.com/scouten)). + +To make a release: + +1. Increment the version number in `src/esqlite.app.src` as appropriate. +2. Run `rebar3 ct` to ensure that the build is good. +3. **IMPORTANT:** Run `rebar3 clean` to remove build artifacts (especially compiled C object code). +4. Run `rebar3 hex publish` to make the release. diff --git a/src/esqlite.app.src b/src/esqlite.app.src index 729a3de..e08766b 100644 --- a/src/esqlite.app.src +++ b/src/esqlite.app.src @@ -1,9 +1,13 @@ {application, esqlite, [ {description, "sqlite nif interface"}, - {vsn, "0.1.1"}, + {vsn, "0.2.3"}, {modules, [esqlite3, esqlite3_nif]}, {registered, []}, + {maintainers, ["Aleph Archives", "Qing Liang "]}, + {licenses, ["Apache"]}, + {links, [{"Github", "https://github.com/mmzeeman/esqlite"}]}, + {include_files, ["Makefile"]}, {applications, [ kernel, stdlib