Skip to content

Commit

Permalink
Oops; forgot to bump to a snapshot after the last release.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Feb 29, 2020
1 parent c72803c commit 09d899a
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Leiningen News -- history of user-visible changes

## 2.9.2 / ???
## 2.9.2 / 2020-02-28

* Bump to Clojure 1.10.1. (Phil Hagelberg)
* Fix a bug where disabling implicit middleware disabled explicit ones. (radhika reddy)
Expand Down
2 changes: 1 addition & 1 deletion bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function msg {
echo "$@" 1>&2
}

export LEIN_VERSION="2.9.1"
export LEIN_VERSION="2.9.2-SNAPSHOT"
# Must be sha256sum, will be replaced by bin/release
export LEIN_CHECKSUM='ea7c831a4f5c38b6fc3926c6ad32d1d4b9b91bf830a715ecff5a70a18bda55f8'

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.9.1"
export LEIN_VERSION="2.9.2-SNAPSHOT"

# cd to the project root, if applicable
NOT_FOUND=1
Expand Down
2 changes: 1 addition & 1 deletion bin/lein-sdkman
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This variant of the lein script is meant for consumption by SDKMAN!
# (i.e. a script which supports all platforms with bash installed)
export LEIN_VERSION="2.9.1"
export LEIN_VERSION="2.9.2-SNAPSHOT"

if [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]]; then
delimiter=";"
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.9.1
set LEIN_VERSION=2.9.2-SNAPSHOT

if "%LEIN_VERSION:~-9%" == "-SNAPSHOT" (
set SNAPSHOT=YES
Expand Down
2 changes: 1 addition & 1 deletion bin/lein.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Set-ParentLocation([string]$file)

function Initialize-Environment
{
$env:LEIN_VERSION = '2.9.1'
$env:LEIN_VERSION = '2.9.2-SNAPSHOT'
$env:SNAPSHOT = if($env:LEIN_VERSION -like '*-SNAPSHOT'){'YES'}else{'NO'} #TODO: Still needed?
$env:ORIGINAL_PWD = $PWD -replace '\\$','\\'
Set-ParentLocation project.clj
Expand Down
7 changes: 3 additions & 4 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.9.1</version>
<version>2.9.2-SNAPSHOT</version>
<name>leiningen-core</name>
<description>Library for core functionality of Leiningen.</description>
<url>https://github.com/technomancy/leiningen</url>
Expand All @@ -15,7 +14,7 @@
</license>
</licenses>
<scm>
<tag>955bedae81aaa0ac733b3a66b5e16988a2cf4637</tag>
<tag>47243751579ae4cc198650b717c7ba75a9326c09</tag>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
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.9.1"
(defproject leiningen-core "2.9.2-SNAPSHOT"
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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.9.1"
(defproject leiningen "2.9.2-SNAPSHOT"
:description "Automate Clojure projects without setting your hair on fire."
:url "https://github.com/technomancy/leiningen"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 09d899a

Please sign in to comment.