diff --git a/ideaboard.txt b/ideaboard.txt index 710bac9..b30f6d5 100644 --- a/ideaboard.txt +++ b/ideaboard.txt @@ -5,7 +5,6 @@ Agents Vars state identity lifetime Metadata -Tuples - syntax immutability / side effects type hints Pre and Post conditions of functions diff --git a/project.clj b/project.clj index d091e3d..a9128c8 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject clojure-koans "0.4.6-SNAPSHOT" +(defproject clojure-koans "0.4.6" :description "The Clojure koans." :dependencies [[org.clojure/clojure "1.3.0"] [koan-engine "0.1.2"]] diff --git a/script/deploy.sh b/script/deploy.sh index 951effc..b92738c 100755 --- a/script/deploy.sh +++ b/script/deploy.sh @@ -1,6 +1,5 @@ #!/bin/sh -git push mkdir -p releases zip -r releases/clojure-koans-`date +"%Y-%m-%d_%H-%M"`.zip \ . \ @@ -11,6 +10,8 @@ echo echo "Don't forget to upload the zipfile" echo " to https://github.com/functional-koans/clojure-koans/downloads" echo `ls -t releases/clojure-koans-*.zip | head -n1` +echo "git push" +echo "git push --tags" echo # TODO: use http://developer.github.com/v3/repos/downloads/