Skip to content

Commit 931b9ee

Browse files
committed
tabula-java 0.9.1
1 parent 24d471a commit 931b9ee

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
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-0.9.0-jar-with-dependencies.jar --help
19+
$ java -jar ./target/tabula-0.9.1-jar-with-dependencies.jar --help
2020
2121
usage: tabula [-a <AREA>] [-c <COLUMNS>] [-d] [-f <FORMAT>] [-g] [-h] [-i]
2222
[-n] [-o <OUTFILE>] [-p <PAGES>] [-r] [-s <PASSWORD>] [-u] [-v]
@@ -55,7 +55,7 @@ Tabula helps you extract tables from PDFs
5555
5656
```
5757

58-
It also includes a debugging tool, run `java -cp ./target/tabula-0.9.0-jar-with-dependencies.jar technology.tabula.debug.Debug -h` for the available options.
58+
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.
5959

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

pom.xml

Lines changed: 6 additions & 6 deletions
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>0.9.0</version>
5+
<version>0.9.1</version>
66
<name>Tabula</name>
77
<description>Extract tables from PDF files</description>
88
<url>http://github.com/tabulapdf/tabula-java</url>
@@ -36,7 +36,7 @@
3636
<connection>scm:git:git@github.com:tabulapdf/tabula-java.git</connection>
3737
<developerConnection>scm:git:git@github.com:tabulapdf/tabula-java.git</developerConnection>
3838
<url>git@github.com:tabulapdf/tabula-java.git</url>
39-
<tag>tabula-0.9.0</tag>
39+
<tag>tabula-0.9.1</tag>
4040
</scm>
4141

4242
<repositories>
@@ -58,9 +58,9 @@
5858
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
5959
</snapshotRepository>
6060
<repository>
61-
<id>ossrh</id>
62-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
63-
</repository>
61+
<id>ossrh</id>
62+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
63+
</repository>
6464
</distributionManagement>
6565

6666
<reporting>
@@ -234,7 +234,7 @@
234234
<dependency>
235235
<groupId>org.apache.pdfbox</groupId>
236236
<artifactId>pdfbox</artifactId>
237-
<version>1.8.10</version>
237+
<version>1.8.12</version>
238238
</dependency>
239239

240240
<dependency>

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

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

3232
public class CommandLineApp {
3333

34-
private static String VERSION = "0.9.0";
34+
private static String VERSION = "0.9.1";
3535
private static String VERSION_STRING = String.format("tabula %s (c) 2012-2016 Manuel Aristarán", VERSION);
3636
private static String BANNER = "\nTabula helps you extract tables from PDFs\n\n";
3737

0 commit comments

Comments
 (0)