Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ronen committed Feb 22, 2020
1 parent b2b8082 commit d176fc4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/binary.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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"}
Expand Down
4 changes: 2 additions & 2 deletions src/tmx/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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))))
Expand Down Expand Up @@ -86,7 +86,7 @@
(def cli
{:app {:command "tmx"
:description "tmux session managment"
:version "0.2.1"}
:version "0.2.2"}

:global-opts []

Expand Down

0 comments on commit d176fc4

Please sign in to comment.