diff --git a/README.md b/README.md index 7d49055..40549d1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Requirements ------------ You should only need a somewhat recent version of Erlang/OTP. The module has -been tested with Erlang R13B, R14B and R15B. +been tested with Erlang R13B, R14B, R15B and R16B. You also need a recent version of [rebar](http://github.com/basho/rebar) in the system path. If you're going to run the unit tests you need the latest @@ -32,7 +32,7 @@ To build the (very) limited documentation run ``make doc``. After the module is compiled with ``make``, insert getopt into the Erlang lib directory (e.g. by soft link or copying). ```sh -ln -s . /usr/local/lib/erlang/lib/getopt-0.7.1 +ln -s . /usr/local/lib/erlang/lib/getopt-0.8.1 ``` diff --git a/src/getopt.app.src b/src/getopt.app.src index 812a987..8d8edbc 100644 --- a/src/getopt.app.src +++ b/src/getopt.app.src @@ -1,7 +1,7 @@ %% -*- mode: Erlang; fill-column: 75; comment-column: 50; -*- {application, getopt, [{description, "Command-line options parser for Erlang"}, - {vsn, "0.7.1"}, + {vsn, "0.8.1"}, {modules, []}, {registered, []}, {applications, [kernel, stdlib]}]}.