Skip to content

Commit

Permalink
Release 1.4.0-RC1.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Nov 8, 2010
1 parent 74f0e8f commit 5075cf5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/lein
@@ -1,6 +1,6 @@
#!/bin/sh

export LEIN_VERSION="1.4.0-SNAPSHOT"
export LEIN_VERSION="1.4.0-RC1"

case $LEIN_VERSION in
*SNAPSHOT) SNAPSHOT="YES" ;;
Expand Down
2 changes: 1 addition & 1 deletion bin/lein.bat
@@ -1,6 +1,6 @@
@echo off

set LEIN_VERSION=1.4.0-SNAPSHOT
set LEIN_VERSION=1.4.0-RC1

setLocal EnableDelayedExpansion

Expand Down
18 changes: 11 additions & 7 deletions pom.xml
Expand Up @@ -3,19 +3,17 @@
<modelVersion>4.0.0</modelVersion>
<groupId>leiningen</groupId>
<artifactId>leiningen</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0-RC1</version>
<name>leiningen</name>
<description>A build tool designed not to set your hair on fire.</description>
<url>http://github.com/technomancy/leiningen</url>
<licenses>
<license>
<name>Eclipse Public License</name>
</license>
<license />
</licenses>
<scm>
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://git@github.com/technomancy/leiningen.git</developerConnection>
<tag>2ea4b63e584267745fdf2d3f0f9888ba182eabfe</tag>
<tag>74f0e8f26db350f99bcf13591e3f603347f4ad8c</tag>
<url>http://github.com/technomancy/leiningen</url>
</scm>
<build>
Expand Down Expand Up @@ -62,9 +60,9 @@
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>jline</groupId>
Expand All @@ -80,6 +78,12 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-ant-tasks</artifactId>
<version>2.0.10</version>
<exclusions>
<exclusion>
<artifactId>ant</artifactId>
<groupId>ant</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Expand Up @@ -2,7 +2,7 @@
;; defproject form. It can have other code in it as well, including
;; loading other task definitions.

(defproject leiningen "1.4.0-SNAPSHOT"
(defproject leiningen "1.4.0-RC1"
:description "A build tool designed not to set your hair on fire."
:url "http://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"}
Expand Down

0 comments on commit 5075cf5

Please sign in to comment.