From a1fa43400295d57a9acfed10735c1235904a9407 Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Wed, 13 Apr 2011 20:51:48 -0700 Subject: [PATCH] Release 1.5.2. --- NEWS | 8 ++++++++ bin/lein | 3 +-- bin/lein.bat | 2 +- project.clj | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 689bfd7c6..30fc09321 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ Leiningen NEWS -- history of user-visible changes += 1.5.2 / 2011-04-13 + +* Check rlwrap for support of custom quotes before using. + +* Improve Solaris support. (Donald Clark Jackson) + +* Fix curl error relating to missing $https_proxy. (Pirmin Fix) + = 1.5.1 / 2011-04-12 * Improve rlwrap quote support. (Ambrose Bonnaire-Sergeant) diff --git a/bin/lein b/bin/lein index 2e99759d3..923416860 100755 --- a/bin/lein +++ b/bin/lein @@ -1,6 +1,6 @@ #!/bin/sh -LEIN_VERSION="1.5.1" +LEIN_VERSION="1.5.2" export LEIN_VERSION case $LEIN_VERSION in @@ -177,7 +177,6 @@ else # Test to see if rlwrap supports custom quote chars rlwrap -m -q '"' echo "hi" > /dev/null 2>&1 if [ $? -eq 0 ]; then - echo "dash q" RLWRAP="$RLWRAP -m -q '\"'" fi fi diff --git a/bin/lein.bat b/bin/lein.bat index 76be7591a..feca526db 100644 --- a/bin/lein.bat +++ b/bin/lein.bat @@ -1,6 +1,6 @@ @echo off -set LEIN_VERSION=1.5.1 +set LEIN_VERSION=1.5.2 setLocal EnableExtensions EnableDelayedExpansion diff --git a/project.clj b/project.clj index 131299b78..d17291058 100644 --- a/project.clj +++ b/project.clj @@ -2,7 +2,7 @@ ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. -(defproject leiningen "1.5.1" +(defproject leiningen "1.5.2" :description "A build tool designed not to set your hair on fire." :url "https://github.com/technomancy/leiningen" :license {:name "Eclipse Public License"}