diff --git a/README.md b/README.md index bc52efb..b4cf51c 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,18 @@ ## Usage -Grab a jar [from latest release](https://github.com/someteam/acha/releases/latest). +Grab a jar [from latest release](https://github.com/someteam/acha/releases/latest): + + curl -L -o acha-uber.jar https://github.com/someteam/acha/releases/download/0.2.2/acha-uber-0.2.2.jar Run it as: - curl -L -o acha-uber.jar https://github.com/someteam/acha/releases/download/0.2.1/acha-uber-0.2.1.jar - java -jar acha-uber.jar + java -jar acha-uber-0.2.2.jar open http://localhost:8080/ Following configuration options are supported: - java -jar acha-uber.jar --ip 0.0.0.0 --port 8080 --dir .acha + java -jar acha-uber-0.2.2.jar --ip 0.0.0.0 --port 8080 --dir .acha ## Building from source diff --git a/project.clj b/project.clj index db199f7..95c635e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject acha "0.2.1" +(defproject acha "0.2.2" :description "Enterprise Git Achievements Provider. Web scale. In the cloud" :url "http://acha-acha.co" diff --git a/src-clj/acha/core.clj b/src-clj/acha/core.clj index 981f1fb..a665671 100644 --- a/src-clj/acha/core.clj +++ b/src-clj/acha/core.clj @@ -2,7 +2,7 @@ (:require [clojure.core.async :as async])) -(def version "0.2.1") +(def version "0.2.2") (def working-dir ".acha")