Skip to content

Commit ef5ab97

Browse files
committed
Release 2.9.8
1 parent d7f563e commit ef5ab97

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
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.8-SNAPSHOT"
11+
export LEIN_VERSION="2.9.8"
1212
# Must be sha256sum, will be replaced by bin/release
13-
export LEIN_CHECKSUM='82f01414acecddbb0ebd6d571505bb671a6fd093236bcdac2468cfe5f2eaa802'
13+
export LEIN_CHECKSUM='2a0e9114e0d623c748a9ade5d72b54128b31b5ddb13f51b04c533f104bb0c48d'
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.8-SNAPSHOT"
7+
export LEIN_VERSION="2.9.8"
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.8-SNAPSHOT"
5+
export LEIN_VERSION="2.9.8"
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.8-SNAPSHOT
5+
set LEIN_VERSION=2.9.8
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.8-SNAPSHOT'
37+
$env:LEIN_VERSION = '2.9.8'
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: 4 additions & 3 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.8-SNAPSHOT</version>
7+
<version>2.9.8</version>
78
<name>leiningen-core</name>
89
<description>Library for core functionality of Leiningen.</description>
910
<url>https://github.com/technomancy/leiningen</url>
@@ -14,7 +15,7 @@
1415
</license>
1516
</licenses>
1617
<scm>
17-
<tag>11d9a256226e29ddcf10db39cd89ecf23578af6b</tag>
18+
<tag>d7f563e4d956b036b6a5e33402a5a6bc9da6553e</tag>
1819
</scm>
1920
<build>
2021
<sourceDirectory>src</sourceDirectory>

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.8-SNAPSHOT"
1+
(defproject leiningen-core "2.9.8"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
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.8-SNAPSHOT"
4+
(defproject leiningen "2.9.8"
55
:description "Automate Clojure projects without setting your hair on fire."
66
:url "https://github.com/technomancy/leiningen"
77
:license {:name "Eclipse Public License"
88
:url "http://www.eclipse.org/legal/epl-v10.html"}
99
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
10-
:dependencies [[leiningen-core "2.9.8-SNAPSHOT"]
10+
:dependencies [[leiningen-core "2.9.8"]
1111
;; needed for pom
1212
[org.clojure/data.xml "0.2.0-alpha5"]
1313
;; needed for test

0 commit comments

Comments
 (0)