Release 2.5.2

This commit is contained in:
Jean Niklas L'orange 2015-08-09 15:28:06 +02:00
parent 6c7de27414
commit fe48537e7d
6 changed files with 16 additions and 15 deletions

View file

@ -4,7 +4,7 @@
# somewhere on your $PATH, like ~/bin. The rest of Leiningen will be
# installed upon first run into the ~/.lein/self-installs directory.
export LEIN_VERSION="2.5.2-SNAPSHOT"
export LEIN_VERSION="2.5.2"
case $LEIN_VERSION in
*SNAPSHOT) SNAPSHOT="YES" ;;

View file

@ -4,7 +4,7 @@
# It has all the cross-platform stuff stripped out as well as the
# logic for running from a source checkout and self-install/upgrading.
export LEIN_VERSION="2.5.2-SNAPSHOT"
export LEIN_VERSION="2.5.2"
if [ "$(whoami)" = "root" ] && [ "$LEIN_ROOT" = "" ]; then
echo "WARNING: You're currently running as root; probably by accident."

View file

@ -2,7 +2,7 @@
setLocal EnableExtensions EnableDelayedExpansion
set LEIN_VERSION=2.5.2-SNAPSHOT
set LEIN_VERSION=2.5.2
if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES

View file

@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId>
<packaging>jar</packaging>
<version>2.5.2-SNAPSHOT</version>
<version>2.5.2</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
@ -14,11 +15,11 @@
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/towler73/leiningen.git</connection>
<developerConnection>scm:git:ssh://git@github.com/towler73/leiningen.git</developerConnection>
<tag>7045e666e10bfe4dbb6630b497fd94dbc257519f
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://git@github.com/technomancy/leiningen.git</developerConnection>
<tag>6c7de27414532a6727e183392221758e20c65ba7
</tag>
<url>https://github.com/towler73/leiningen</url>
<url>https://github.com/technomancy/leiningen</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
@ -66,12 +67,12 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>bultitude</groupId>
<artifactId>bultitude</artifactId>
<version>0.2.6</version>
<version>0.2.8</version>
</dependency>
<dependency>
<groupId>classlojure</groupId>
@ -91,7 +92,7 @@
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http</artifactId>
<version>2.7</version>
<version>2.9</version>
</dependency>
<dependency>
<groupId>com.hypirion</groupId>

View file

@ -1,4 +1,4 @@
(defproject leiningen-core "2.5.2-SNAPSHOT"
(defproject leiningen-core "2.5.2"
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}

View file

@ -1,12 +1,12 @@
;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
;; file as well as sample.project.clj for help writing your own.
(defproject leiningen "2.5.2-SNAPSHOT"
(defproject leiningen "2.5.2"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[leiningen-core "2.5.2-SNAPSHOT"]
:dependencies [[leiningen-core "2.5.2"]
[org.clojure/data.xml "0.0.3"]
[commons-io "2.4"]
[bultitude "0.2.8"]