Skip to content

Commit d5647f2

Browse files
committed
Release 2.11.1
1 parent 7d8d357 commit d5647f2

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

bin/lein

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# somewhere on your $PATH, like ~/bin. The rest of Leiningen will be
55
# installed upon first run into the ~/.lein/self-installs directory.
66

7-
export LEIN_VERSION="2.11.1-SNAPSHOT"
7+
export LEIN_VERSION="2.11.1"
88
# Must be sha256sum, will be replaced by bin/release
9-
export LEIN_CHECKSUM='83ab3c11f703f629d2e0ba55107f276af00abf7e497d1957276528f332c4c3f5'
9+
export LEIN_CHECKSUM='47d3cd3d436433c59662fb54c5f3c8d87dcf6e8249421b362b38ec3710a3d4f9'
1010

1111
case $LEIN_VERSION in
1212
*SNAPSHOT) SNAPSHOT="YES" ;;
@@ -446,7 +446,7 @@ if $cygterm; then
446446
stty -icanon min 1 -echo > /dev/null 2>&1
447447
fi
448448

449-
# TODO: investigate http://skife.org/java/unix/2.11.1-SNAPSHOT6/20/really_executable_jars.html
449+
# TODO: investigate http://skife.org/java/unix/2.11.16/20/really_executable_jars.html
450450
# If you're packaging this for a package manager (.deb, homebrew, etc)
451451
# you need to remove the self-install and upgrade functionality or see lein-pkg.
452452
if [ "$1" = "self-install" ]; then

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.11.1-SNAPSHOT"
7+
export LEIN_VERSION="2.11.1"
88

99
if [[ "$CLASSPATH" != "" ]]; then
1010
cat <<-'EOS' 1>&2

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.11.1-SNAPSHOT
5+
set LEIN_VERSION=2.11.1
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.11.1-SNAPSHOT'
37+
$env:LEIN_VERSION = '2.11.1'
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>leiningen-core</groupId>
55
<artifactId>leiningen-core</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.11.1-SNAPSHOT</version>
7+
<version>2.11.1</version>
88
<name>leiningen-core</name>
99
<description>Library for core functionality of Leiningen.</description>
1010
<url>https://codeberg.org/leiningen/leiningen</url>
@@ -15,7 +15,7 @@
1515
</license>
1616
</licenses>
1717
<scm>
18-
<tag>98b115e683d0b2676e9ac5ff4ca3da60c5ab7901</tag>
18+
<tag>7d8d357ba19ec63cf5f9ccfd4fcbb55768f7e016</tag>
1919
</scm>
2020
<build>
2121
<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.11.1-SNAPSHOT"
1+
(defproject leiningen-core "2.11.1"
22
:url "https://codeberg.org/leiningen/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.11.1-SNAPSHOT"
4+
(defproject leiningen "2.11.1"
55
:description "Automate Clojure projects without setting your hair on fire."
66
:url "https://codeberg.org/leiningen/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.11.1-SNAPSHOT"]
10+
:dependencies [[leiningen-core "2.11.1"]
1111
;; needed for pom
1212
[org.clojure/data.xml "0.2.0-alpha6"]
1313
;; needed for test

0 commit comments

Comments
 (0)