diff --git a/NEWS.md b/NEWS.md index 6565a530..bebf55b7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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) diff --git a/doc/FAQ.md b/doc/FAQ.md index 752ca09d..77848d86 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -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"]]` diff --git a/leiningen-core/src/leiningen/core/project.clj b/leiningen-core/src/leiningen/core/project.clj index 26e413ab..092145c8 100755 --- a/leiningen-core/src/leiningen/core/project.clj +++ b/leiningen-core/src/leiningen/core/project.clj @@ -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] diff --git a/todo.org b/todo.org index 1b3efc21..ddafa5c2 100644 --- a/todo.org +++ b/todo.org @@ -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