Skip to content

Commit

Permalink
Release 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hypirion committed Aug 24, 2016
1 parent 82cd622 commit c5d95b7
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2-SNAPSHOT"
export LEIN_VERSION="2.7.0"

case $LEIN_VERSION in
*SNAPSHOT) SNAPSHOT="YES" ;;
Expand Down
2 changes: 1 addition & 1 deletion bin/lein-pkg
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2-SNAPSHOT"
export LEIN_VERSION="2.7.0"

if [ "$(whoami)" = "root" ] && [ "$LEIN_ROOT" = "" ]; then
echo "WARNING: You're currently running as root; probably by accident."
Expand Down
2 changes: 1 addition & 1 deletion bin/lein.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ setLocal EnableExtensions EnableDelayedExpansion
call :CmdExists powershell.exe
if ERRORLEVEL 1 ( echo PowerShell not found. ) else ( set ps1=%~dpn0.ps1 & shift & powershell -File "%ps1%" %* )

set LEIN_VERSION=2.6.2-SNAPSHOT
set LEIN_VERSION=2.7.0

if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES
Expand Down
2 changes: 1 addition & 1 deletion bin/lein.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file)

function Initialize-Environment
{
$env:LEIN_VERSION = '2.6.2-SNAPSHOT'
$env:LEIN_VERSION = '2.7.0'
$env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed?
$env:ORIGINAL_PWD = $PWD -replace '\\$','\\'
Set-ParentLocation project.clj
Expand Down
23 changes: 20 additions & 3 deletions leiningen-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId>
<packaging>jar</packaging>
<version>2.6.1</version>
<version>2.7.0</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
Expand All @@ -17,7 +17,7 @@
<scm>
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://[email protected]/technomancy/leiningen.git</developerConnection>
<tag>645161ad1827e941177ffebec29da6f700d78c25
<tag>82cd62296db69d8d53cbe1fc0b63bf7d5cb6474e
</tag>
<url>https://github.com/technomancy/leiningen</url>
</scm>
Expand Down Expand Up @@ -70,6 +70,12 @@
<groupId>bultitude</groupId>
<artifactId>bultitude</artifactId>
<version>0.2.8</version>
<exclusions>
<exclusion>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>classlojure</groupId>
Expand All @@ -84,7 +90,18 @@
<dependency>
<groupId>com.cemerick</groupId>
<artifactId>pomegranate</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<exclusions>
<exclusion>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId>
<version>0.2.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
Expand Down
2 changes: 1 addition & 1 deletion leiningen-core/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject leiningen-core "2.6.2-SNAPSHOT"
(defproject leiningen-core "2.7.0"
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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.6.2-SNAPSHOT"
(defproject leiningen "2.7.0"
: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.6.2-SNAPSHOT"]
:dependencies [[leiningen-core "2.7.0"]
[org.clojure/data.xml "0.0.8"]
[commons-io "2.4"]
[bultitude "0.2.8"]
Expand Down

0 comments on commit c5d95b7

Please sign in to comment.