diff --git a/bin/lein b/bin/lein index 17ad7e81c..907bf92b9 100755 --- a/bin/lein +++ b/bin/lein @@ -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.0-SNAPSHOT" +export LEIN_VERSION="2.11.0" # Must be sha256sum, will be replaced by bin/release -export LEIN_CHECKSUM='d27299bad34075ac2864d0bd0559f835c6e2c476c0b0a283bcbdb574fdadbb34' +export LEIN_CHECKSUM='83ab3c11f703f629d2e0ba55107f276af00abf7e497d1957276528f332c4c3f5' case $LEIN_VERSION in *SNAPSHOT) SNAPSHOT="YES" ;; diff --git a/bin/lein-pkg b/bin/lein-pkg index 597d1bac3..59f16f116 100644 --- a/bin/lein-pkg +++ b/bin/lein-pkg @@ -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.0-SNAPSHOT" +export LEIN_VERSION="2.11.0" if [[ "$CLASSPATH" != "" ]]; then cat <<-'EOS' 1>&2 diff --git a/bin/lein.bat b/bin/lein.bat index e4acac18c..f9aa60427 100755 --- a/bin/lein.bat +++ b/bin/lein.bat @@ -2,7 +2,7 @@ setLocal EnableExtensions EnableDelayedExpansion -set LEIN_VERSION=2.11.0-SNAPSHOT +set LEIN_VERSION=2.11.0 if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" ( set SNAPSHOT=YES diff --git a/bin/lein.ps1 b/bin/lein.ps1 index 81b7910d9..9353daee0 100644 --- a/bin/lein.ps1 +++ b/bin/lein.ps1 @@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file) function Initialize-Environment { - $env:LEIN_VERSION = '2.11.0-SNAPSHOT' + $env:LEIN_VERSION = '2.11.0' $env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed? $env:ORIGINAL_PWD = $PWD -replace '\\$','\\' Set-ParentLocation project.clj diff --git a/leiningen-core/pom.xml b/leiningen-core/pom.xml index 2197ba54c..54e7e681a 100644 --- a/leiningen-core/pom.xml +++ b/leiningen-core/pom.xml @@ -4,7 +4,7 @@ leiningen-core leiningen-core jar - 2.10.1-SNAPSHOT + 2.11.0 leiningen-core Library for core functionality of Leiningen. https://codeberg.org/leiningen/leiningen @@ -15,7 +15,7 @@ - 3680dde3a94f61b333201e5809037f6d3f6e5942 + 867cb62aa71d1b147f3b19319701804737393818 src diff --git a/leiningen-core/project.clj b/leiningen-core/project.clj index 582e6e905..822393be1 100644 --- a/leiningen-core/project.clj +++ b/leiningen-core/project.clj @@ -1,4 +1,4 @@ -(defproject leiningen-core "2.11.0-SNAPSHOT" +(defproject leiningen-core "2.11.0" :url "https://codeberg.org/leiningen/leiningen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} diff --git a/project.clj b/project.clj index fd04436e1..ebc6030b4 100644 --- a/project.clj +++ b/project.clj @@ -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.0-SNAPSHOT" +(defproject leiningen "2.11.0" :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.0-SNAPSHOT"] + :dependencies [[leiningen-core "2.11.0"] ;; needed for pom [org.clojure/data.xml "0.2.0-alpha6"] ;; needed for test