Release 1.5.2.

This commit is contained in:
Phil Hagelberg 2011-04-13 20:51:48 -07:00
parent ab6293d4c6
commit a1fa434002
4 changed files with 11 additions and 4 deletions

8
NEWS
View file

@ -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)

View file

@ -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

View file

@ -1,6 +1,6 @@
@echo off
set LEIN_VERSION=1.5.1
set LEIN_VERSION=1.5.2
setLocal EnableExtensions EnableDelayedExpansion

View file

@ -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"}