Skip to content

Commit

Permalink
Release 2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Jan 29, 2024
1 parent 7d8d357 commit d5647f2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# 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.11.1-SNAPSHOT"
export LEIN_VERSION="2.11.1"
# Must be sha256sum, will be replaced by bin/release
export LEIN_CHECKSUM='83ab3c11f703f629d2e0ba55107f276af00abf7e497d1957276528f332c4c3f5'
export LEIN_CHECKSUM='47d3cd3d436433c59662fb54c5f3c8d87dcf6e8249421b362b38ec3710a3d4f9'

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

# TODO: investigate http://skife.org/java/unix/2.11.1-SNAPSHOT6/20/really_executable_jars.html
# TODO: investigate http://skife.org/java/unix/2.11.16/20/really_executable_jars.html
# If you're packaging this for a package manager (.deb, homebrew, etc)
# you need to remove the self-install and upgrade functionality or see lein-pkg.
if [ "$1" = "self-install" ]; then
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.11.1-SNAPSHOT"
export LEIN_VERSION="2.11.1"

if [[ "$CLASSPATH" != "" ]]; then
cat <<-'EOS' 1>&2
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.11.1-SNAPSHOT
set LEIN_VERSION=2.11.1

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.11.1-SNAPSHOT'
$env:LEIN_VERSION = '2.11.1'
$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
4 changes: 2 additions & 2 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.11.1-SNAPSHOT</version>
<version>2.11.1</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://codeberg.org/leiningen/leiningen</url>
Expand All @@ -15,7 +15,7 @@
</license>
</licenses>
<scm>
<tag>98b115e683d0b2676e9ac5ff4ca3da60c5ab7901</tag>
<tag>7d8d357ba19ec63cf5f9ccfd4fcbb55768f7e016</tag>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
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.11.1-SNAPSHOT"
(defproject leiningen-core "2.11.1"
:url "https://codeberg.org/leiningen/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.11.1-SNAPSHOT"
(defproject leiningen "2.11.1"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://codeberg.org/leiningen/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.11.1-SNAPSHOT"]
:dependencies [[leiningen-core "2.11.1"]
;; needed for pom
[org.clojure/data.xml "0.2.0-alpha6"]
;; needed for test
Expand Down

0 comments on commit d5647f2

Please sign in to comment.