From 1c963cecd75cb5f7b37f28737abb120e61390c62 Mon Sep 17 00:00:00 2001 From: Juan Jose Comellas Date: Sat, 29 Aug 2020 11:22:23 -0300 Subject: [PATCH] Bump version to 1.0.2 --- README.md | 2 +- src/getopt.app.src | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 30d34ee..5bdfa74 100644 --- a/README.md +++ b/README.md @@ -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"} ] } ``` diff --git a/src/getopt.app.src b/src/getopt.app.src index 6048cd6..c97b247 100644 --- a/src/getopt.app.src +++ b/src/getopt.app.src @@ -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]}]}.