diff --git a/NEWS b/NEWS index 5c246091..49788681 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ Leiningen NEWS -- history of user-visible changes -= 1.1.0 / ??? += 1.1.0 / 2010-02-16 * Added "lein upgrade" task diff --git a/bin/lein b/bin/lein index 1ef5d8e3..11eeeac2 100755 --- a/bin/lein +++ b/bin/lein @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="1.1.0-SNAPSHOT" +VERSION="1.1.0" CLASSPATH="$(find lib/ -follow -mindepth 1 -maxdepth 1 -print0 2> /dev/null | tr \\0 \:)" LEIN_JAR="$HOME/.m2/repository/leiningen/leiningen/$VERSION/leiningen-$VERSION-standalone.jar" @@ -60,7 +60,7 @@ done HTTP_CLIENT="wget -O" if type -p curl >/dev/null 2>&1; then - HTTP_CLIENT="curl -o" + HTTP_CLIENT="curl -L -o" fi if [ "$1" = "repl" ]; then @@ -80,7 +80,7 @@ elif [ "$1" = "self-install" ]; then fi echo "Downloading Leiningen now..." mkdir -p `dirname "$LEIN_JAR"` - LEIN_URL="http://repo.technomancy.us/leiningen-$VERSION-standalone.jar" + LEIN_URL="http://github.com/downloads/technomancy/leiningen/leiningen-$VERSION-standalone.jar" exec $HTTP_CLIENT "$LEIN_JAR" "$LEIN_URL" elif [ "$1" = "upgrade" ]; then if [[ $VERSION == *SNAPSHOT ]]; then diff --git a/bin/lein.bat b/bin/lein.bat index 24753743..02d2ba4e 100644 --- a/bin/lein.bat +++ b/bin/lein.bat @@ -8,7 +8,7 @@ rem and it should be copied on %CLOJURE_JAR% path set CLOJURE_VERSION=1.1.0 -set LEIN_VERSION=1.1.0-SNAPSHOT +set LEIN_VERSION=1.1.0 rem uncomment this and set paths explicitly rem set LEIN_JAR=C:\Documents and Settings\wojcirob\.m2\repository\leiningen\leiningen\%LEIN_VERSION%\leiningen-%LEIN_VERSION%-standalone.jar diff --git a/project.clj b/project.clj index 3b7be5ba..fcc9afa1 100644 --- a/project.clj +++ b/project.clj @@ -2,11 +2,11 @@ ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. -(defproject leiningen "1.1.0-RC2" +(defproject leiningen "1.1.0" :description "A build tool designed not to set your hair on fire." :url "http://github.com/technomancy/leiningen" :dependencies [[org.clojure/clojure "1.1.0"] - [org.clojure/clojure-contrib "1.1.0-master-SNAPSHOT"] + [org.clojure/clojure-contrib "1.1.0"] [ant/ant "1.6.5"] [ant/ant-launcher "1.6.5"] [jline "0.9.94"]