From 2090f2dfb5902f5c08ca4c374c799cef277b3e23 Mon Sep 17 00:00:00 2001 From: Bruce Adams Date: Fri, 26 Aug 2016 15:24:05 -0400 Subject: [PATCH] Release version 1.7.0 --- README.md | 12 ++++++------ project.clj | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 92a44e8..223e3e8 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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' @@ -169,14 +169,14 @@ $ lein run $ 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 diff --git a/project.clj b/project.clj index f6c370a..3e91f1a 100644 --- a/project.clj +++ b/project.clj @@ -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"