diff --git a/README.md b/README.md
index 369444b4..b230c5ac 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.1-jar-with-dependencies.jar --help
+$ java -jar target/tabula-1.0.2-jar-with-dependencies.jar --help
usage: tabula [-a ] [-b ] [-c ] [-d] [-f
] [-g] [-h] [-i] [-l] [-n] [-o ] [-p ] [-r]
[-s ] [-t] [-u] [-v]
@@ -69,7 +69,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-1.0.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.2-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 7107ea53..27e77f04 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
technology.tabula
tabula
- 1.0.2-SNAPSHOT
+ 1.0.2
Tabula
Extract tables from PDF files
http://github.com/tabulapdf/tabula-java
@@ -36,17 +36,9 @@
scm:git:git@github.com:tabulapdf/tabula-java.git
scm:git:git@github.com:tabulapdf/tabula-java.git
git@github.com:tabulapdf/tabula-java.git
- tabula-1.0.0-SNAPSHOT
+ v1.0.2
-
-
- sonatype
- Sonatype repository
- https://oss.sonatype.org/content/repositories/snapshots/
-
-
-
UTF-8
UTF-8
diff --git a/src/main/java/technology/tabula/CommandLineApp.java b/src/main/java/technology/tabula/CommandLineApp.java
index b7b9dfe9..61de9f12 100644
--- a/src/main/java/technology/tabula/CommandLineApp.java
+++ b/src/main/java/technology/tabula/CommandLineApp.java
@@ -33,7 +33,7 @@
public class CommandLineApp {
private static String VERSION = "1.0.2";
- private static String VERSION_STRING = String.format("tabula %s (c) 2012-2017 Manuel AristarĂ¡n", VERSION);
+ private static String VERSION_STRING = String.format("tabula %s (c) 2012-2018 Manuel AristarĂ¡n", VERSION);
private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";
private static final int RELATIVE_AREA_CALCULATION_MODE = 0;