Skip to content

Commit

Permalink
Release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Jun 9, 2014
1 parent 52f6ec9 commit dfaa2df
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0-SNAPSHOT"
export LEIN_VERSION="2.4.0"

case $LEIN_VERSION in
*SNAPSHOT) SNAPSHOT="YES" ;;
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.4.0-SNAPSHOT"
export LEIN_VERSION="2.4.0"

if [ `whoami` = "root" ] && [ "$LEIN_ROOT" = "" ]; then
echo "WARNING: You're currently running as root; probably by accident."
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.4.0-SNAPSHOT
set LEIN_VERSION=2.4.0

if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES
Expand Down
16 changes: 8 additions & 8 deletions bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ echo "Are these acceptable times? (~3s) [Y\n]"
read CONTINUE
case "$CONTINUE" in
y|Y|"")
gpg -ab $RELEASE_JAR
echo "Upload $RELEASE_JAR and $RELEASE_JAR.asc to GitHub releases for $RELEASE_VERSION.";;
gpg -ab $RELEASE_JAR;;
*)
echo "Aborted."
exit 1;;
Expand All @@ -49,11 +48,12 @@ esac
cd $LEIN_ROOT

git commit -a -m "Release $RELEASE_VERSION"
git tag -s $RELEASE_VERSION -m "Release $RELEASE_VERSION"
git push && git push --tags && git push origin master:stable

echo "Upload $RELEASE_JAR and $RELEASE_JAR.asc to GitHub releases for $RELEASE_VERSION."

rm -rf target leiningen-core/target
echo "Test self-install."
echo "If things are good, run this:"
echo "$ git tag -s $RELEASE_VERSION -m \"Release $RELEASE_VERSION\""
echo "$ git push && git push --tags && git push origin master:stable"
echo "$ lein deploy clojars"
echo "$ cd leiningen-core && lein deploy clojars"
echo "Test self-install. If things are good, run this:"
echo "$ lein deploy clojars && cd leiningen-core && lein deploy clojars"
echo "And announce it on the mailing list."
13 changes: 6 additions & 7 deletions leiningen-core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?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">
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId>
<packaging>jar</packaging>
<version>2.3.4</version>
<version>2.4.0</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
Expand All @@ -17,7 +16,7 @@
<scm>
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://[email protected]/technomancy/leiningen.git</developerConnection>
<tag>77d659e6eec73d1d46b890838d62590751c94844
<tag>52f6ec9b4c0a9af8255b3bf69d23cca82ecca900
</tag>
<url>https://github.com/technomancy/leiningen</url>
</scm>
Expand Down Expand Up @@ -67,12 +66,12 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.5.1</version>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>bultitude</groupId>
<artifactId>bultitude</artifactId>
<version>0.2.2</version>
<version>0.2.6</version>
</dependency>
<dependency>
<groupId>classlojure</groupId>
Expand All @@ -87,7 +86,7 @@
<dependency>
<groupId>com.cemerick</groupId>
<artifactId>pomegranate</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
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.4.0-SNAPSHOT"
(defproject leiningen-core "2.4.0"
:url "https://github.com/technomancy/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,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.4.0-SNAPSHOT"
(defproject leiningen "2.4.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.4.0-SNAPSHOT"]
:dependencies [[leiningen-core "2.4.0"]
[org.clojure/data.xml "0.0.3"]
[commons-io "2.4"]
[bultitude "0.2.6"]
Expand Down

0 comments on commit dfaa2df

Please sign in to comment.