Skip to content

Commit 8a312c1

Browse files
author
jmorton
committed
Prepare for new point release.
1 parent 48636f6 commit 8a312c1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MKDIR_P = mkdir -p
22
NAME = tableau-sdk-wrapper
3-
VERSION = 1.2
3+
VERSION = 1.2.1
44
BUILD_DIR = ${NAME}-${VERSION}
55
ARTIFACT = tableau-${VERSION}.jar
66
ARCHIVE = ${NAME}-${VERSION}.zip

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Tableau Extract API is not thread-safe when inserting a row to the extract,
55

66
Included in the utility is a thin wrapper to publish an extract to Tableau.
77

8-
The latest version is 1.2, which is [available here](https://github.com/jlmorton/tableau/releases/download/1.2/tableau-sdk-wrapper-1.2.zip).
8+
The latest version is 1.2.1, which is [available here](https://github.com/jlmorton/tableau/releases/download/1.2/tableau-sdk-wrapper-1.2.zip).
99

1010
# Performance
1111
On my small dual core Macbook Pro, I see the following performance:
@@ -49,7 +49,7 @@ Instead, there is a small shell script included in this repository, `bin/install
4949
The utility requires Java 8.
5050

5151
# Installation
52-
Download the [current release distribution](https://github.com/jlmorton/tableau/releases/download/1.2/tableau-sdk-wrapper-1.2.zip) and unzip. Run the `install_tableau_sdk.sh` to download the Tableau libraries.
52+
Download the [current release distribution](https://github.com/jlmorton/tableau/releases/download/1.2.1/tableau-sdk-wrapper-1.2.1.zip) and unzip. Run the `install_tableau_sdk.sh` to download the Tableau libraries.
5353

5454
# Building
5555
After installing the Tableau SDK, simply run `mvn install`

bin/extract.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
33
LIB="$DIR/lib"
44
MAX_MEMORY="2g"
5-
JARFILE="$LIB/tableau-1.2.jar"
5+
JARFILE="$LIB/tableau-1.2.1.jar"
66
SDK_DIR="$LIB/tableausdk-linux64-10300.18.0510.1135"
77
JAVA_SDK_DIR="$SDK_DIR/lib64/tableausdk/Java/"
88

bin/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
BASE_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
33
LIB="$BASE_PATH/lib"
4-
JARFILE="$LIB/tableau-1.2.jar"
4+
JARFILE="$LIB/tableau-1.2.1.jar"
55
SDK_DIR="$LIB/tableausdk-linux64-10300.18.0510.1135"
66
JAVA_SDK_DIR="$SDK_DIR/lib64/tableausdk/Java/"
77

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>net.jlmorton</groupId>
66
<artifactId>tableau</artifactId>
7-
<version>1.2</version>
7+
<version>1.2.1</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<java.language.version>1.8</java.language.version>

src/main/java/net/jlmorton/tableau/CommandLinePropertySource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public boolean isPublish() {
8989

9090
@Override
9191
public boolean isExtract() {
92-
return commandLine.hasOption("extract");
92+
return commandLine.hasOption("extract") && commandLine.hasOption("file");
9393
}
9494

9595
};

0 commit comments

Comments
 (0)