Todos and news.

This commit is contained in:
Phil Hagelberg 2013-01-10 11:30:18 -08:00
parent 824c3dc511
commit adab79df77
4 changed files with 10 additions and 16 deletions

View file

@ -2,6 +2,10 @@
## 2.0.0-RC1 / ???
* Fix some reader bugs in repl task. (Colin Jones)
* Fix a bug where Leiningen's deps could affect javac. (Jean Niklas L'orange)
* Test selectors may allow entire namespaces to be skipped. (Anthony Grimes)
* Allow project's git repo to be different than project root. (David Greenberg)
* Don't AOT the `:main` namespace outside of uberjar task.
* Check Clojars releases repository by default instead of legacy Clojars.
* Allow hooks from profiles to apply with limited scope. (Hugo Duncan)

View file

@ -96,15 +96,3 @@
can usually set `:bootclasspath true` in project.clj to speed up
project launches, though there are compatibility issues with some
libraries.
**Q:** Leiningen can't find some jars that the preview version could!
**A:** As of 2.0.0-RC1, Leiningen no longer checks the
[Clojars classic repository](https://clojars.org/repo) by default,
replacing it with the
[Clojars releases repository](https://github.com/ato/clojars-web/wiki/Releases).
This speeds up dependency resolution and allows for more secure
builds which enforce artifact signatures, but many libraries haven't
been promoted to the releases repository yet. If you need such a
library (or any snapshot version), you can add the old repo to your
`:repositories` in `project.clj`: `:repositories
[["clojars-classic" "https://clojars.org/repo"]]`

View file

@ -65,6 +65,7 @@
(declare meta-merge)
;; TODO: drop this and use read-eval syntax in 3.0
(defn- unquote-project
"Inside defproject forms, unquoting (~) allows for arbitrary evaluation."
[args]

View file

@ -10,10 +10,11 @@ See also https://github.com/technomancy/leiningen/issues
- [X] Allow search queries on any field. (#243)
- [X] Drop clojars snapshots from default repos (#241)
- [X] Remove mention of preview branch from docs, bin/lein
- [ ] Deploy and configure clojars promotion functionality
- [ ] Check to see that libraries are being promoted
- [ ] Document releases repository on Clojars wiki
https://github.com/ato/clojars-web/wiki/Releases
- [X] Deploy and configure clojars promotion functionality
- [X] Document releases repository on Clojars wiki
- [ ] missing dependency resolution output
- [ ] Move downloads to S3 (#885)
- [ ] Prevent overwrites in Clojars
** 2.0.0-preview9
- [X] Fast trampolining
- [X] Latest newnew