Skip to content

Commit 0fda5e0

Browse files
committed
Release 2.9.6
1 parent 79a4742 commit 0fda5e0

File tree

8 files changed

+16
-17
lines changed

8 files changed

+16
-17
lines changed

bin/lein

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ function msg {
88
echo "$@" 1>&2
99
}
1010

11-
export LEIN_VERSION="2.9.6-SNAPSHOT"
11+
export LEIN_VERSION="2.9.6"
1212
# Must be sha256sum, will be replaced by bin/release
13-
export LEIN_CHECKSUM='df490c98bfe8d667bc5d83b80238528877234c285d0d48f61a4c8743c2db1eea'
13+
export LEIN_CHECKSUM='41c543f73eec4327dc20e60d5d820fc2a9dc772bc671610b9c385d9c4f5970b8'
1414

1515
case $LEIN_VERSION in
1616
*SNAPSHOT) SNAPSHOT="YES" ;;

bin/lein-pkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# It has all the cross-platform stuff stripped out as well as the
55
# logic for running from a source checkout and self-install/upgrading.
66

7-
export LEIN_VERSION="2.9.6-SNAPSHOT"
7+
export LEIN_VERSION="2.9.6"
88

99
# cd to the project root, if applicable
1010
NOT_FOUND=1

bin/lein-sdkman

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# This variant of the lein script is meant for consumption by SDKMAN!
44
# (i.e. a script which supports all platforms with bash installed)
5-
export LEIN_VERSION="2.9.6-SNAPSHOT"
5+
export LEIN_VERSION="2.9.6"
66

77
if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then
88
delimiter=";"

bin/lein.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setLocal EnableExtensions EnableDelayedExpansion
44

5-
set LEIN_VERSION=2.9.6-SNAPSHOT
5+
set LEIN_VERSION=2.9.6
66

77
if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
88
set SNAPSHOT=YES

bin/lein.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file)
3434

3535
function Initialize-Environment
3636
{
37-
$env:LEIN_VERSION = '2.9.6-SNAPSHOT'
37+
$env:LEIN_VERSION = '2.9.6'
3838
$env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed?
3939
$env:ORIGINAL_PWD = $PWD -replace '\\$','\\'
4040
Set-ParentLocation project.clj

leiningen-core/pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<?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">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>leiningen-core</groupId>
45
<artifactId>leiningen-core</artifactId>
56
<packaging>jar</packaging>
6-
<version>2.9.5</version>
7+
<version>2.9.6</version>
78
<name>leiningen-core</name>
89
<description>Library for core functionality of Leiningen.</description>
910
<url>https://github.com/technomancy/leiningen</url>
@@ -14,9 +15,7 @@
1415
</license>
1516
</licenses>
1617
<scm>
17-
<tag>8080950326e886b715ac272acdd4a584cc51216b
18-
</tag>
19-
<url/>
18+
<tag>79a4742e4b5c490133220443d68d14232b1655dd</tag>
2019
</scm>
2120
<build>
2221
<sourceDirectory>src</sourceDirectory>
@@ -48,7 +47,7 @@
4847
</repository>
4948
<repository>
5049
<id>clojars</id>
51-
<url>https://clojars.org/repo/</url>
50+
<url>https://repo.clojars.org/</url>
5251
<snapshots>
5352
<enabled>true</enabled>
5453
</snapshots>
@@ -72,8 +71,8 @@
7271
<version>0.3.0</version>
7372
<exclusions>
7473
<exclusion>
75-
<groupId>org.clojure</groupId>
7674
<artifactId>clojure</artifactId>
75+
<groupId>org.clojure</groupId>
7776
</exclusion>
7877
</exclusions>
7978
</dependency>
@@ -90,11 +89,11 @@
9089
<dependency>
9190
<groupId>clj-commons</groupId>
9291
<artifactId>pomegranate</artifactId>
93-
<version>1.2.0</version>
92+
<version>1.2.1</version>
9493
<exclusions>
9594
<exclusion>
96-
<groupId>org.slf4j</groupId>
9795
<artifactId>jcl-over-slf4j</artifactId>
96+
<groupId>org.slf4j</groupId>
9897
</exclusion>
9998
</exclusions>
10099
</dependency>

leiningen-core/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject leiningen-core "2.9.6-SNAPSHOT"
1+
(defproject leiningen-core "2.9.6"
22
:url "https://github.com/technomancy/leiningen"
33
:license {:name "Eclipse Public License"
44
:url "http://www.eclipse.org/legal/epl-v10.html"}

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
22
;; file as well as sample.project.clj for help writing your own.
33

4-
(defproject leiningen "2.9.6-SNAPSHOT"
4+
(defproject leiningen "2.9.6"
55
:description "Automate Clojure projects without setting your hair on fire."
66
:url "https://github.com/technomancy/leiningen"
77
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)