Skip to content

Commit

Permalink
Release 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Dec 12, 2018
1 parent 3fd688e commit 66cb01f
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function msg {
echo "$@" 1>&2
}

export LEIN_VERSION="2.8.2-SNAPSHOT"
export LEIN_VERSION="2.8.2"

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.8.2-SNAPSHOT"
export LEIN_VERSION="2.8.2"

# cd to the project root, if applicable
NOT_FOUND=1
Expand Down
2 changes: 1 addition & 1 deletion bin/lein-sdkman
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.2-SNAPSHOT"
export LEIN_VERSION="2.8.2"

if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then
delimiter=";"
Expand Down
2 changes: 1 addition & 1 deletion bin/lein.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setLocal EnableExtensions EnableDelayedExpansion

set LEIN_VERSION=2.8.2-SNAPSHOT
set LEIN_VERSION=2.8.2

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.8.2-SNAPSHOT'
$env:LEIN_VERSION = '2.8.2'
$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
20 changes: 11 additions & 9 deletions leiningen-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId>
<packaging>jar</packaging>
<version>2.8.2-SNAPSHOT</version>
<version>2.8.2</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
Expand All @@ -14,7 +14,9 @@
</license>
</licenses>
<scm>
<tag>2cd92f412108040010db012a38cd2d4bdd26ea95</tag>
<tag>3fd688e216d000b7abc96913a6bdf9cd42766a22
</tag>
<url/>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
Expand Down Expand Up @@ -46,7 +48,7 @@
</repository>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
<url>https://clojars.org/repo/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
Expand All @@ -65,13 +67,13 @@
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>bultitude</groupId>
<groupId>timofreiberg</groupId>
<artifactId>bultitude</artifactId>
<version>0.2.8</version>
<version>0.3.0</version>
<exclusions>
<exclusion>
<artifactId>dynapath</artifactId>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand All @@ -91,8 +93,8 @@
<version>1.1.0</version>
<exclusions>
<exclusion>
<artifactId>plexus-utils</artifactId>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand All @@ -107,12 +109,12 @@
<version>2.12</version>
<exclusions>
<exclusion>
<artifactId>httpcore</artifactId>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
<artifactId>wagon-provider-api</artifactId>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-provider-api</artifactId>
</exclusion>
</exclusions>
</dependency>
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.8.2-SNAPSHOT"
(defproject leiningen-core "2.8.2"
: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,13 +1,13 @@
;; 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.8.2-SNAPSHOT"
(defproject leiningen "2.8.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"}
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
:dependencies [[leiningen-core "2.8.2-SNAPSHOT"]
:dependencies [[leiningen-core "2.8.2"]
;; needed for pom
[org.clojure/data.xml "0.0.8"]
;; needed for test
Expand Down

0 comments on commit 66cb01f

Please sign in to comment.