Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmhess committed Oct 9, 2015
1 parent 4e8135d commit 6d644f5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.0.17
- Fixed null collection issue / NPE (Issue 8)

## 0.0.16
- Unloader will quote collections (which the loader expects)
- Fixed collection issue (Issue 14)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ loading of various types of delimited files, including

### Downloading
This utility has already been built, and is available at
https://github.com/brianmhess/cassandra-loader/releases/download/v0.0.16/cassandra-loader
https://github.com/brianmhess/cassandra-loader/releases/download/v0.0.17/cassandra-loader

Get it with wget:
```
wget https://github.com/brianmhess/cassandra-loader/releases/download/v0.0.16/cassandra-loader
wget https://github.com/brianmhess/cassandra-loader/releases/download/v0.0.17/cassandra-loader
```

### Building
Expand Down Expand Up @@ -255,7 +255,7 @@ cassandra-unloader

Usage statement:
```
version: 0.0.16
version: 0.0.17
Usage: -f <outputStem> -host <ipaddress> -schema <schema> [OPTIONS]
OPTIONS:
-configFile <filename> File with configuration options
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'java'
apply plugin: 'application'

def versionNum = '0.0.16'
def versionNum = '0.0.17'

allprojects {
tasks.withType(JavaCompile) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/datastax/loader/CqlDelimLoad.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
import com.codahale.metrics.Timer;

public class CqlDelimLoad {
private String version = "0.0.16";
private String version = "0.0.17";
private String host = null;
private int port = 9042;
private String username = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/datastax/loader/CqlDelimUnload.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@


public class CqlDelimUnload {
private String version = "0.0.16";
private String version = "0.0.17";
private String host = null;
private int port = 9042;
private String username = null;
Expand Down

0 comments on commit 6d644f5

Please sign in to comment.