leiningen/NEWS

154 lines
3.6 KiB
Text
Raw Normal View History

Leiningen NEWS -- history of user-visible changes
2010-07-18 20:33:36 +00:00
= 1.2.0 / 2010-07-18
* Don't enable repl rlwrap when unnecessary. (dumb terms, Emacs, etc.)
* Add support for password-protected repositories.
* Allow :jar-name and :uberjar-name to be customized.
* Allow unquoting in defproject form.
* Support classifiers in dependencies.
* Clean before running uberjar task.
* Implicitly clean lib/ before running deps.
* Add support for test-resources directory.
* Fix help output that AOT sometimes drops.
* Clear out lib/dev on lein clean even if :library-path is customized.
* Some tasks suppress useless output.
* Snapshot versions now allow self-install.
2010-06-12 22:35:36 +00:00
* Allow compile task to take a list of namespaces overriding project.clj.
* Handle more types of project metadata.
2010-06-05 21:00:37 +00:00
* Add plugin creation guide.
* Include arglists in help output.
* Make lein script usable from any subdirectory in the project root.
* Fix repl task to work with forked subprocess.
* Fork subprocess unconditionally for greater compatibility.
* Allow $JAVA_CMD to be customized.
* Fix a bug causing everything to recompile in tests. Thanks, Stuart!
* Fix exit code for test runs.
* Automatically compile and fetch deps when needed.
* Allow :jvm-opts and :warn-on-reflection to be set in project.clj.
2010-05-19 01:31:04 +00:00
* Merge lein-swank plugin into swank-clojure.
* Add :aot as an alias in project.clj for :namespaces to AOT-compile.
* Add option to omit-default-repositories.
2010-05-19 01:31:04 +00:00
* Allow group-id to be omitted when depending on Clojure and Contrib.
* Keep dev-dependencies in lib/dev, exclude them from uberjars.
* Include version numbers in jar filenames.
* Fix repl task to use project subclassloader.
* Don't allow "new" task to create *jure names.
* Add classpath command.
* Implement Checkout Dependencies. See README.
* Add option to symlink deps into lib/ instead of copying.
* Fixed bug for file timestamps inside jars.
* Generated poms should work in Java IDEs.
2010-05-19 01:31:04 +00:00
* Improved Cygwin support.
* Added INTRO.md file for introductory concepts.
2010-02-17 05:58:41 +00:00
= 1.1.0 / 2010-02-16
2010-01-02 06:06:46 +00:00
2010-02-13 17:30:46 +00:00
* Added "lein upgrade" task
2010-01-31 22:24:30 +00:00
* Don't download snapshot releases unless actually needed.
* Make subclassloader's classpath available to projects.
* Fixed "install" task to place pom in local repository.
* Bug fixes to "new" task.
2010-02-13 17:30:46 +00:00
* Only AOT-compile namespaces specified in project.clj.
2010-01-02 06:06:46 +00:00
* Better error handling.
* Add exclusions support for dependencies.
* Support dependencies with native code.
2010-01-02 23:52:14 +00:00
* Added experimental Windows support.
2009-12-11 06:52:01 +00:00
= 1.0.1 / 2009-12-10
* Added bash completion.
* Honor $JAVA_OPTS.
* Fix new task.
* Add version task.
* Use jline for repl task.
* Fix pom task for Java 1.5 compatibility.
2009-12-06 05:07:26 +00:00
= 1.0.0 / 2009-12-05
* Source, test, and compilation paths can be set in project.clj.
* Project code runs in an isolated classloader; can now compile/test
projects that require a different version of Clojure from
Leiningen. (Does not support 1.0's test-is yet.)
* Install task no longer requires maven to be installed.
* Only compile namespaces whose .class files are older than .clj files.
* Add "new" task for generating blank projects.
* Set <scm> tag when generating pom.xml.
* Include pom.xml, pom.properties, and more detailed manifest in jars.
* Summarize pass/fail counts from test runs across all namespaces.
* Accept a list of namespaces for test task rather than testing all.
* Create $PROJECT-standalone.jar file from uberjar to distinguish from
regular jar files.
* Plugins have more flexibility to set the classpath and other
arguments for running project code.
* Add resources/ directory to classpath and generated jars.
* Start Leiningen faster by using -Xbootclasspath argument.
2009-12-06 05:07:26 +00:00
= 0.5.0 / 2009-11-17
* Initial release!