Back to 2.2.0-SNAPSHOT.

This commit is contained in:
Phil Hagelberg 2013-03-28 15:38:43 -07:00
parent 10d7d1faa3
commit da76893c23
7 changed files with 39 additions and 10 deletions

View file

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

View file

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

View file

@ -2,7 +2,7 @@
setLocal EnableExtensions EnableDelayedExpansion
set LEIN_VERSION=2.1.2
set LEIN_VERSION=2.2.0-SNAPSHOT
if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES

View file

@ -46,5 +46,5 @@ echo "Also deploy this release of leiningen-core to Clojars."
# deploy leiningen itself
# scp docs/uberdoc.html philhag@leiningen.org:leiningen.org/reference.html
# git push && git push --tags
# git checkout preview && git merge master && git push
# git checkout stable && git merge master && git push
# Drop version back to SNAPSHOT

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<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.1.2</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
@ -14,6 +14,12 @@
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</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>10d7d1faa33df68066202863cc6439e8fe49295a</tag>
<url>https://github.com/technomancy/leiningen</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
@ -26,20 +32,43 @@
<testResource>
<directory>dev-resources</directory>
</testResource>
<testResource>
<directory>resources</directory>
</testResource>
</testResources>
<directory>target</directory>
<outputDirectory>target/classes</outputDirectory>
</build>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
<url>http://repo1.maven.org/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>clojars</id>
<url>http://clojars.org/repo/</url>
<url>https://clojars.org/repo/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<dependencies>

View file

@ -1,4 +1,4 @@
(defproject leiningen-core "2.1.2"
(defproject leiningen-core "2.2.0-SNAPSHOT"
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}

View file

@ -1,7 +1,7 @@
;; 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.2"
(defproject leiningen "2.2.0-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"