Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmhess committed Oct 7, 2015
1 parent 60123d5 commit 0e387b9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.16
- Unloader will quote collections (which the loader expects)
- Fixed collection issue (Issue 14)
- BLOBs are now Base64 encoded on unload, and should be Base64 to load (Issue 15)

## 0.0.15
- Better error handling for case when C* inserts are failing

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.15/cassandra-loader
https://github.com/brianmhess/cassandra-loader/releases/download/v0.0.16/cassandra-loader

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

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

Usage statement:
```
version: 0.0.15
version: 0.0.16
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.15'
def versionNum = '0.0.16'

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.15";
private String version = "0.0.16";
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.15";
private String version = "0.0.16";
private String host = null;
private int port = 9042;
private String username = null;
Expand Down

0 comments on commit 0e387b9

Please sign in to comment.