Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzido committed Aug 6, 2017
1 parent 7578784 commit e9667a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <AREA>] [-b <DIRECTORY>] [-c <COLUMNS>] [-d] [-f
<FORMAT>] [-g] [-h] [-i] [-l] [-n] [-o <OUTFILE>] [-p <PAGES>] [-r]
[-s <PASSWORD>] [-t] [-u] [-v]
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>technology.tabula</groupId>
<artifactId>tabula</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.1</version>
<name>Tabula</name>
<description>Extract tables from PDF files</description>
<url>http://github.com/tabulapdf/tabula-java</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/technology/tabula/CommandLineApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit e9667a5

Please sign in to comment.