Skip to content

Commit 9c94368

Browse files
committed
Release 1.6.2.
1 parent 7c067a5 commit 9c94368

File tree

8 files changed

+10
-11
lines changed

8 files changed

+10
-11
lines changed

NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Leiningen NEWS -- history of user-visible changes
22

3-
= 1.6.2 / ???
3+
= 1.6.2 / 2011-11-11
44

55
* Let run task work with main functions from Java classes.
66

bin/lein

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
LEIN_VERSION="1.6.2-SNAPSHOT"
3+
LEIN_VERSION="1.6.2"
44
export LEIN_VERSION
55

66
case $LEIN_VERSION in

bin/lein-pkg

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# It has all the cross-platform stuff stripped out as well as the
55
# logic for running from checkouts and self-upgrading.
66

7-
LEIN_VERSION="1.6.1.1"
7+
LEIN_VERSION="1.6.2"
88
export LEIN_VERSION
99

1010
if [ `whoami` = "root" ] && [ "$LEIN_ROOT" = "" ]; then

bin/lein.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22

3-
set LEIN_VERSION=1.6.2-SNAPSHOT
3+
set LEIN_VERSION=1.6.2
44

55
setLocal EnableExtensions EnableDelayedExpansion
66

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>leiningen</groupId>
66
<artifactId>leiningen</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<name>leiningen</name>
99
<description>Automate Clojure projects without setting your hair on fire.</description>
1010
<url>https://github.com/technomancy/leiningen</url>
@@ -16,7 +16,7 @@
1616
<scm>
1717
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
1818
<developerConnection>scm:git:ssh://git@github.com/technomancy/leiningen.git</developerConnection>
19-
<tag>0e299f0a176aeeac95fb192d2f1de07ca416daff</tag>
19+
<tag>989ee2bae2e924ffbad06b1a99b337885a62d335</tag>
2020
<url>https://github.com/technomancy/leiningen</url>
2121
</scm>
2222
<build>
@@ -83,7 +83,7 @@
8383
<dependency>
8484
<groupId>org.apache.maven</groupId>
8585
<artifactId>maven-ant-tasks</artifactId>
86-
<version>2.0.10</version>
86+
<version>2.1.3</version>
8787
<exclusions>
8888
<exclusion>
8989
<artifactId>ant</artifactId>

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
;; defproject form. It can have other code in it as well, including
33
;; loading other task definitions.
44

5-
(defproject leiningen "1.6.2-SNAPSHOT"
5+
(defproject leiningen "1.6.2"
66
:description "Automate Clojure projects without setting your hair on fire."
77
:url "https://github.com/technomancy/leiningen"
88
:license {:name "Eclipse Public License"}

src/leiningen/core.clj

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ Warning: alpha; subject to change."
7676
(:deps m#))
7777
:dev-dependencies (or (:dev-dependencies m#)
7878
(:dev-deps m#))
79+
:checksum-deps (:checksum-deps m# true)
7980
:compile-path (normalize-path#
8081
(or (:compile-path m#) "classes"))
8182
:source-path (normalize-path#

todo.org

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ See also https://github.com/technomancy/leiningen/issues
1515
- [X] non-jar deps on classpath (#244)
1616
- [X] recover from error in interactive (#234)
1717
- [X] use java class in run task (#249)
18-
- [ ] fix deploy with new maven-ant-tasks
19-
- [ ] signed deps for plugins (#247)
20-
- [ ] jvm-specific deps (JSR 310)
18+
- [X] fix deploy with new maven-ant-tasks
2119
* For 1.6.1
2220
- [X] upgrade hooke
2321
- [X] make it easier to use :repl-options [:print clojure.pprint/pprint]

0 commit comments

Comments
 (0)