From 904f2c91a47ca2be7e4f8ecab215ab26eb21dbef Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Tue, 19 Mar 2013 19:45:21 -0700 Subject: [PATCH] Release 2.1.0 --- bin/lein | 2 +- bin/lein-pkg | 2 +- bin/lein.bat | 2 +- bin/release | 2 +- leiningen-core/pom.xml | 45 +++++--------------------------------- leiningen-core/project.clj | 2 +- project.clj | 4 ++-- 7 files changed, 12 insertions(+), 47 deletions(-) diff --git a/bin/lein b/bin/lein index d5d70df53..1920215b5 100755 --- a/bin/lein +++ b/bin/lein @@ -4,7 +4,7 @@ # 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.1.0-SNAPSHOT" +export LEIN_VERSION="2.1.0" case $LEIN_VERSION in *SNAPSHOT) SNAPSHOT="YES" ;; diff --git a/bin/lein-pkg b/bin/lein-pkg index 735737efd..1f21eecaf 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.1.0-SNAPSHOT" +export LEIN_VERSION="2.1.0" if [ `whoami` = "root" ] && [ "$LEIN_ROOT" = "" ]; then echo "WARNING: You're currently running as root; probably by accident." diff --git a/bin/lein.bat b/bin/lein.bat index 4be5a1b0f..dc0754861 100755 --- a/bin/lein.bat +++ b/bin/lein.bat @@ -2,7 +2,7 @@ setLocal EnableExtensions EnableDelayedExpansion -set LEIN_VERSION=2.1.0-SNAPSHOT +set LEIN_VERSION=2.1.0 if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" ( set SNAPSHOT=YES diff --git a/bin/release b/bin/release index 5eabd4538..54103d068 100755 --- a/bin/release +++ b/bin/release @@ -36,7 +36,7 @@ time ../lein-$RELEASE_VERSION run -m clojure.main/main -e nil echo "If these are under 3 seconds then you should be set to upload" echo "target/leiningen-$RELEASE_VERSION-standalone.jar to S3." -echo "s3c me put -P target/leiningen-2.0.0-$RELEASE_VERSION-standalone.jar s3://leiningen/downloads/" +echo "s3c me put -P target/leiningen-$RELEASE_VERSION-standalone.jar s3://leiningen/downloads/" echo "Also deploy this release of leiningen-core to Clojars." # Still manual for now: diff --git a/leiningen-core/pom.xml b/leiningen-core/pom.xml index 97d9e6394..305c10e80 100644 --- a/leiningen-core/pom.xml +++ b/leiningen-core/pom.xml @@ -1,10 +1,10 @@ - + 4.0.0 leiningen-core leiningen-core - jar - 2.1.0-SNAPSHOT + 2.1.0 leiningen-core Library for core functionality of Leiningen. https://github.com/technomancy/leiningen @@ -14,19 +14,10 @@ http://www.eclipse.org/legal/epl-v10.html - - scm:git:git://github.com/technomancy/leiningen.git - scm:git:ssh://git@github.com/technomancy/leiningen.git - af3235cf8573c88ac354d8ac3307cc5f87855049 - https://github.com/technomancy/leiningen - src test - - dev-resources - resources @@ -35,46 +26,20 @@ dev-resources - - dev-resources - - - resources - - target - target/classes central - http://repo1.maven.org/maven2/ - - false - - - true - + http://repo1.maven.org/maven2 clojars - https://clojars.org/repo/ - - true - - - true - + http://clojars.org/repo/ sonatype https://oss.sonatype.org/content/repositories/snapshots/ - - true - - - true - diff --git a/leiningen-core/project.clj b/leiningen-core/project.clj index 2699f9965..84a2ff735 100644 --- a/leiningen-core/project.clj +++ b/leiningen-core/project.clj @@ -1,4 +1,4 @@ -(defproject leiningen-core "2.1.0-SNAPSHOT" +(defproject leiningen-core "2.1.0" :url "https://github.com/technomancy/leiningen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} diff --git a/project.clj b/project.clj index 987add9dd..50c76c4a8 100644 --- a/project.clj +++ b/project.clj @@ -1,12 +1,12 @@ ;; 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.1.0-SNAPSHOT" +(defproject leiningen "2.1.0" :description "Automate Clojure projects without setting your hair on fire." :url "https://github.com/technomancy/leiningen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} - :dependencies [[leiningen-core "2.1.0-SNAPSHOT"] + :dependencies [[leiningen-core "2.1.0"] [org.clojure/data.xml "0.0.3"] [bultitude "0.2.2"] [stencil "0.3.1"]