Skip to content

Commit e9667a5

Browse files
committed
Prepare release
1 parent 7578784 commit e9667a5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Download a version of the tabula-java's jar, with all dependencies included, tha
1616
`tabula-java` provides a command line application:
1717

1818
```
19-
$ java -jar target/tabula-1.0.0-jar-with-dependencies.jar --help
19+
$ java -jar target/tabula-1.0.1-jar-with-dependencies.jar --help
2020
usage: tabula [-a <AREA>] [-b <DIRECTORY>] [-c <COLUMNS>] [-d] [-f
2121
<FORMAT>] [-g] [-h] [-i] [-l] [-n] [-o <OUTFILE>] [-p <PAGES>] [-r]
2222
[-s <PASSWORD>] [-t] [-u] [-v]
@@ -64,7 +64,7 @@ Tabula helps you extract tables from PDFs
6464
-v,--version Print version and exit.
6565
```
6666

67-
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.
67+
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.
6868

6969
You can also integrate `tabula-java` with any JVM language. For Java examples, see the [`tests`](src/test/java/technology/tabula/) folder.
7070

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>technology.tabula</groupId>
44
<artifactId>tabula</artifactId>
5-
<version>1.0.1-SNAPSHOT</version>
5+
<version>1.0.1</version>
66
<name>Tabula</name>
77
<description>Extract tables from PDF files</description>
88
<url>http://github.com/tabulapdf/tabula-java</url>

src/main/java/technology/tabula/CommandLineApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
public class CommandLineApp {
3131

32-
private static String VERSION = "1.0.0";
32+
private static String VERSION = "1.0.1";
3333
private static String VERSION_STRING = String.format("tabula %s (c) 2012-2017 Manuel Aristarán", VERSION);
3434
private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";
3535

0 commit comments

Comments
 (0)