Release 2.7.1

This commit is contained in:
Jean Niklas L'orange 2016-09-22 01:04:59 +02:00
parent d2e006f0a1
commit 150d98b7ae
No known key found for this signature in database
GPG key ID: 5A92E04305696D78
8 changed files with 13 additions and 10 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.7.1-SNAPSHOT"
export LEIN_VERSION="2.7.1"
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.7.1-SNAPSHOT"
export LEIN_VERSION="2.7.1"
function check_root {
local -i user_id

View file

@ -2,7 +2,7 @@
# This variant of the lein script is meant for consumption by SDKMAN!
# (i.e. a script which supports all platforms with bash installed)
export LEIN_VERSION="2.7.1-SNAPSHOT"
export LEIN_VERSION="2.7.1"
if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then
delimiter=";"

View file

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

View file

@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file)
function Initialize-Environment
{
$env:LEIN_VERSION = '2.7.1-SNAPSHOT'
$env:LEIN_VERSION = '2.7.1'
$env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed?
$env:ORIGINAL_PWD = $PWD -replace '\\$','\\'
Set-ParentLocation project.clj

View file

@ -4,7 +4,7 @@
<groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId>
<packaging>jar</packaging>
<version>2.7.0</version>
<version>2.7.1</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
@ -17,7 +17,7 @@
<scm>
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://git@github.com/technomancy/leiningen.git</developerConnection>
<tag>82cd62296db69d8d53cbe1fc0b63bf7d5cb6474e
<tag>d2e006f0a17b15b49281ae8c2cde5c55a91c6120
</tag>
<url>https://github.com/technomancy/leiningen</url>
</scm>
@ -60,6 +60,9 @@
</releases>
</repository>
</repositories>
<dependencyManagement>
<dependencies/>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>

View file

@ -1,4 +1,4 @@
(defproject leiningen-core "2.7.1-SNAPSHOT"
(defproject leiningen-core "2.7.1"
: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.7.1-SNAPSHOT"
(defproject leiningen "2.7.1"
: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.7.1-SNAPSHOT"]
:dependencies [[leiningen-core "2.7.1"]
[org.clojure/data.xml "0.0.8"]
[commons-io "2.4"]
[bultitude "0.2.8"]