Bump dev version up to 2.8.2-SNAPSHOT.

This commit is contained in:
Phil Hagelberg 2017-10-27 14:46:11 -07:00
parent 2261906d9d
commit 4169f26ca8
8 changed files with 15 additions and 17 deletions

View file

@ -4,7 +4,7 @@
# somewhere on your $PATH, like ~/bin. The rest of Leiningen will be # somewhere on your $PATH, like ~/bin. The rest of Leiningen will be
# installed upon first run into the ~/.lein/self-installs directory. # installed upon first run into the ~/.lein/self-installs directory.
export LEIN_VERSION="2.8.1" export LEIN_VERSION="2.8.2-SNAPSHOT"
case $LEIN_VERSION in case $LEIN_VERSION in
*SNAPSHOT) SNAPSHOT="YES" ;; *SNAPSHOT) SNAPSHOT="YES" ;;

View file

@ -4,7 +4,7 @@
# It has all the cross-platform stuff stripped out as well as the # It has all the cross-platform stuff stripped out as well as the
# logic for running from a source checkout and self-install/upgrading. # logic for running from a source checkout and self-install/upgrading.
export LEIN_VERSION="2.8.1" export LEIN_VERSION="2.8.2-SNAPSHOT"
# cd to the project root, if applicable # cd to the project root, if applicable
NOT_FOUND=1 NOT_FOUND=1

View file

@ -2,7 +2,7 @@
# This variant of the lein script is meant for consumption by SDKMAN! # This variant of the lein script is meant for consumption by SDKMAN!
# (i.e. a script which supports all platforms with bash installed) # (i.e. a script which supports all platforms with bash installed)
export LEIN_VERSION="2.8.1" export LEIN_VERSION="2.8.2-SNAPSHOT"
if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then
delimiter=";" delimiter=";"

View file

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

View file

@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file)
function Initialize-Environment function Initialize-Environment
{ {
$env:LEIN_VERSION = '2.8.1' $env:LEIN_VERSION = '2.8.2-SNAPSHOT'
$env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed? $env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed?
$env:ORIGINAL_PWD = $PWD -replace '\\$','\\' $env:ORIGINAL_PWD = $PWD -replace '\\$','\\'
Set-ParentLocation project.clj Set-ParentLocation project.clj

View file

@ -3,7 +3,7 @@
<groupId>leiningen-core</groupId> <groupId>leiningen-core</groupId>
<artifactId>leiningen-core</artifactId> <artifactId>leiningen-core</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>2.8.1</version> <version>2.8.2-SNAPSHOT</version>
<name>leiningen-core</name> <name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description> <description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url> <url>https://github.com/technomancy/leiningen</url>
@ -14,9 +14,7 @@
</license> </license>
</licenses> </licenses>
<scm> <scm>
<tag>91afe60b11335c9687f21d61a7a501bc46466f6e <tag>2261906d9dd7b8381baf8af3090363c66a91ca79</tag>
</tag>
<url/>
</scm> </scm>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
@ -48,7 +46,7 @@
</repository> </repository>
<repository> <repository>
<id>clojars</id> <id>clojars</id>
<url>https://clojars.org/repo/</url> <url>https://repo.clojars.org/</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
@ -72,8 +70,8 @@
<version>0.2.8</version> <version>0.2.8</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId> <artifactId>dynapath</artifactId>
<groupId>org.tcrawley</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
@ -93,12 +91,12 @@
<version>0.4.0</version> <version>0.4.0</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.tcrawley</groupId>
<artifactId>dynapath</artifactId> <artifactId>dynapath</artifactId>
<groupId>org.tcrawley</groupId>
</exclusion> </exclusion>
<exclusion> <exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId> <artifactId>plexus-utils</artifactId>
<groupId>org.codehaus.plexus</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
@ -113,8 +111,8 @@
<version>2.12</version> <version>2.12</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-provider-api</artifactId> <artifactId>wagon-provider-api</artifactId>
<groupId>org.apache.maven.wagon</groupId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>

View file

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

View file

@ -1,13 +1,13 @@
;; This is Leiningen's own project configuration. See doc/TUTORIAL.md ;; This is Leiningen's own project configuration. See doc/TUTORIAL.md
;; file as well as sample.project.clj for help writing your own. ;; file as well as sample.project.clj for help writing your own.
(defproject leiningen "2.8.1" (defproject leiningen "2.8.2-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire." :description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen" :url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License" :license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"} :url "http://www.eclipse.org/legal/epl-v10.html"}
;; If you update these, update resources/leiningen/bootclasspath-deps.clj too ;; If you update these, update resources/leiningen/bootclasspath-deps.clj too
:dependencies [[leiningen-core "2.8.1"] :dependencies [[leiningen-core "2.8.2-SNAPSHOT"]
;; needed for pom ;; needed for pom
[org.clojure/data.xml "0.0.8"] [org.clojure/data.xml "0.0.8"]
;; needed for test ;; needed for test