Use RELEASE instead of a version range when resolving templates.

This commit is contained in:
Phil Hagelberg 2013-05-21 10:53:46 -07:00
parent 481def11dc
commit 4f5370efcd
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
## 2.2.0 / ???
* Fix a bug where old template versions were always fetched. (Nelson Morris)
* Support `:java-agents` for tooling and instrumenting. (Phil Hagelberg)
* Allow checkout dependencies to operate recursively. (Phil Hagelberg)
* Introduce `:uberjar` profile. (Phil Hagelberg)

View file

@ -7,7 +7,7 @@
(:import java.io.FileNotFoundException))
(defn- fake-project [name]
{:templates [[(symbol name "lein-template") "(0.0.0,)"]]
{:templates [[(symbol name "lein-template") "RELEASE"]]
:repositories {"clojars" {:url "http://clojars.org/repo/"}
"central" {:url "http://repo1.maven.org/maven2"}}})