diff --git a/README.md b/README.md index cdd1bd81..cd9717c6 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Download a version of the tabula-java's jar, with all dependencies included, tha `tabula-java` provides a command line application: ``` -$ java -jar target/tabula-1.0.0-jar-with-dependencies.jar --help +$ java -jar target/tabula-1.0.1-jar-with-dependencies.jar --help usage: tabula [-a ] [-b ] [-c ] [-d] [-f ] [-g] [-h] [-i] [-l] [-n] [-o ] [-p ] [-r] [-s ] [-t] [-u] [-v] @@ -64,7 +64,7 @@ Tabula helps you extract tables from PDFs -v,--version Print version and exit. ``` -It also includes a debugging tool, run `java -cp ./target/tabula-0.9.1-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options. +It also includes a debugging tool, run `java -cp ./target/tabula-1.0.1-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options. You can also integrate `tabula-java` with any JVM language. For Java examples, see the [`tests`](src/test/java/technology/tabula/) folder. diff --git a/pom.xml b/pom.xml index 1f0c99f1..dc985bf0 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 technology.tabula tabula - 1.0.1-SNAPSHOT + 1.0.1 Tabula Extract tables from PDF files http://github.com/tabulapdf/tabula-java diff --git a/src/main/java/technology/tabula/CommandLineApp.java b/src/main/java/technology/tabula/CommandLineApp.java index bf65eabb..b8cfa3cd 100644 --- a/src/main/java/technology/tabula/CommandLineApp.java +++ b/src/main/java/technology/tabula/CommandLineApp.java @@ -29,7 +29,7 @@ public class CommandLineApp { - private static String VERSION = "1.0.0"; + private static String VERSION = "1.0.1"; private static String VERSION_STRING = String.format("tabula %s (c) 2012-2017 Manuel AristarĂ¡n", VERSION); private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";