Skip to content

Commit

Permalink
Release version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Adams committed Aug 26, 2016
1 parent 13cc2c9 commit 2090f2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Recommendation: create a short alias to setup a command named `kale`.

On Linux, OSX and other Unix-style systems, the `alias` command can be used like this:

alias kale="java -jar /full/path/to/kale-1.6.0-standalone.jar"
alias kale="java -jar /full/path/to/kale-1.7.0-standalone.jar"

And on Windows, the `doskey` command can be used like this:

doskey kale=java -jar C:\full\path\to\kale-1.6.0-standalone.jar $*
doskey kale=java -jar C:\full\path\to\kale-1.7.0-standalone.jar $*

Now the `kale` command should be available. Try:

Expand All @@ -44,7 +44,7 @@ shown on the lines starting with `$`. All other text is output from
running `kale`.

```
$ alias 'kale=java -jar /Users/ba/Downloads/kale-1.6.0-standalone.jar'
$ alias 'kale=java -jar /Users/ba/Downloads/kale-1.7.0-standalone.jar'
$ kale login
Endpoint (default: https://api.ng.bluemix.net)?
Using endpoint 'https://api.ng.bluemix.net'
Expand Down Expand Up @@ -169,14 +169,14 @@ $ lein run <command>
$ lein uberjar
Compiling ...
...
Created .../kale/target/uberjar/kale-1.7.0-SNAPSHOT.jar
Created .../kale/target/uberjar/kale-1.7.0-SNAPSHOT-standalone.jar
Created .../kale/target/uberjar/kale-1.8.0-SNAPSHOT.jar
Created .../kale/target/uberjar/kale-1.8.0-SNAPSHOT-standalone.jar
```

Now you can run the tool with a simple `java` command line:

```bash
$ java -jar target/uberjar/kale-1.7.0-SNAPSHOT-standalone.jar
$ java -jar target/uberjar/kale-1.8.0-SNAPSHOT-standalone.jar
```

To make running `kale` easier, it's recommended that you create an alias (see
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;; (C) Copyright IBM Corp. 2016 All Rights Reserved.
;;

(defproject kale "1.7.0-SNAPSHOT"
(defproject kale "1.7.0"
:description "A command line tool for provisioning and configuring the Retrieve and Rank Service and the Document Conversion Service"
:url "https://github.com/IBM-Watson/kale"
:min-lein-version "2.5.0"
Expand Down

0 comments on commit 2090f2d

Please sign in to comment.