Bump version to 1.0.2

This commit is contained in:
Juan Jose Comellas 2020-08-29 11:22:23 -03:00
parent fa37a75d8c
commit 1c963cecd7
No known key found for this signature in database
GPG Key ID: F6B6A1604815F3D6
2 changed files with 10 additions and 11 deletions

View File

@ -27,7 +27,7 @@ To use getopt in your project you can just add it as a dependency in your
```erlang
{deps,
[
{getopt, "1.0.1"}
{getopt, "1.0.2"}
]
}
```

View File

@ -1,10 +1,9 @@
%% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*-
{application, getopt,
[{description, "Command-line options parser for Erlang"},
{vsn, "1.0.1"},
{modules, []},
{registered, []},
{maintainers, ["Juan Jose Comellas"]},
{licenses, ["BSD"]},
{links, [{"GitHub", "https://github.com/jcomellas/getopt"}]},
{applications, [kernel, stdlib]}]}.
{application,getopt,
[{description,"Command-line options parser for Erlang"},
{vsn,"1.0.2"},
{modules,[]},
{registered,[]},
{maintainers,["Juan Jose Comellas"]},
{licenses,["BSD"]},
{links,[{"GitHub","https://github.com/jcomellas/getopt"}]},
{applications,[kernel,stdlib]}]}.