diff --git a/bin/binary.sh b/bin/binary.sh index 1566957..d9dc527 100755 --- a/bin/binary.sh +++ b/bin/binary.sh @@ -1,2 +1,2 @@ LEIN_SNAPSHOTS_IN_RELEASE=1 lein uberjar -cat bin/stub.sh target/tmx-0.2.1-standalone.jar > target/tmx && chmod +x target/tmx +cat bin/stub.sh target/tmx-0.2.2-standalone.jar > target/tmx && chmod +x target/tmx diff --git a/project.clj b/project.clj index 748009f..40435da 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject tmx "0.2.1" +(defproject tmx "0.2.2" :description "Tmux session management tool" :url "https://github.com/narkisr/tmuxificator" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} diff --git a/src/tmx/core.clj b/src/tmx/core.clj index 55c362e..ff1c2d1 100644 --- a/src/tmx/core.clj +++ b/src/tmx/core.clj @@ -18,7 +18,7 @@ (:body (client/get (<< "https://api.github.com/repos/~{user}/~{repo}/tags"))) :key-fn keyword)) (defn version [_] - (let [current "0.2.1" last-version (:name (last (sort-by :name (tags "narkisr" "tmx"))))] + (let [current "0.2.2" last-version (:name (last (sort-by :name (tags "narkisr" "tmx"))))] (if-not (= current last-version) (println (<< "tmx version is ~{current} the latest version is ~{last-version} please upgrade")) (println "tmx" current)))) @@ -86,7 +86,7 @@ (def cli {:app {:command "tmx" :description "tmux session managment" - :version "0.2.1"} + :version "0.2.2"} :global-opts []