Skip to content

Commit

Permalink
Prepare the 0.0.64 release.
Browse files Browse the repository at this point in the history
Testing Done:
CI went green here:
  https://travis-ci.org/pantsbuild/pants/builds/96347412

Bugs closed: 2694

Reviewed at https://rbcommons.com/s/twitter/r/3236/
  • Loading branch information
jsirois committed Dec 12, 2015
1 parent 17b0f29 commit a819e10
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,5 @@ Created by running `./build-support/bin/contributors.sh`.
+ Tom Howland
+ Travis Crawford
+ Ugo Di Girolamo
+ Wei An
+ Yi Cheng
89 changes: 89 additions & 0 deletions src/python/pants/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,95 @@
RELEASE HISTORY
===============

0.0.64 (12/11/2015)
-------------------

Release Notes
~~~~~~~~~~~~~

This release concludes the deprecation cycle of the following items, now removed:

* `dependencies` and `python_test_suite` target aliases
BUILD file authors should use `target` instead.

* `pants.backend.core.tasks.{Task,ConsoleTask,ReplTaskMixin}`
Custom task authors can update imports to the new homes in `pants.task`

* The `test.junit` `--no-suppress-output` option
You now specify `--output-mode=ALL` in the `test.junit` scope instead.

This release also fixes issues using the Scala REPL via `./pants repl` for very
large classpaths.

API Changes
~~~~~~~~~~~

* Upgrade to junit-runner 1.0.0.
`RB #3232 <https://rbcommons.com/s/twitter/r/3232>`_

* Remove deprecated `-suppress-output` flag.
`RB #3229 <https://rbcommons.com/s/twitter/r/3229>`_

* Kill `dependencies`, `python_test_suite` and old task base class aliases.
`RB #3228 <https://rbcommons.com/s/twitter/r/3228>`_

Bugfixes
~~~~~~~~

* Prepend '//' to Address.spec when the spec_path is empty.
`RB #3234 <https://rbcommons.com/s/twitter/r/3234>`_

* Fix problem with too long classpath while starting scala repl: python part
`RB #3195 <https://rbcommons.com/s/twitter/r/3195>`_

* Fix problem with too long classpath while starting scala repl: java part
`RB #3194 <https://rbcommons.com/s/twitter/r/3194>`_

* Fixing instrumentation classpath mutation to support multiple targets and entries.
`RB #3108 <https://rbcommons.com/s/twitter/r/3108>`_

* Use target.id to create the stable classpath for bundle and export-classpath
`RB #3211 <https://rbcommons.com/s/twitter/r/3211>`_

New Features
~~~~~~~~~~~~

* Add an option to write build stats into a local json file.
`RB #3218 <https://rbcommons.com/s/twitter/r/3218>`_

* Make incremental compile optional for zinc
`RB #3226 <https://rbcommons.com/s/twitter/r/3226>`_

* Create a test timeout_maximum flag so that we can prevent people from setting an insanely huge timeout
`RB #3219 <https://rbcommons.com/s/twitter/r/3219>`_

* Add a jvm_prep_command that can work in compile, test, and binary goals
`RB #3209 <https://rbcommons.com/s/twitter/r/3209>`_

Small improvements, Refactoring and Tooling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Remove test target aliases for pants' tests
`RB #3233 <https://rbcommons.com/s/twitter/r/3233>`_

* Move resources() and prep_command() out of backend/core.
`RB #3235 <https://rbcommons.com/s/twitter/r/3235>`_

* [pantsd] Implement PantsDaemon et al.
`RB #3224 <https://rbcommons.com/s/twitter/r/3224>`_

* New implementation of `./pants targets`.
`RB #3214 <https://rbcommons.com/s/twitter/r/3214>`_

* Allow alternate_target_roots to specify an empty collection
`RB #3216 <https://rbcommons.com/s/twitter/r/3216>`_

* Remove group task and register zinc_compile directly
`RB #3215 <https://rbcommons.com/s/twitter/r/3215>`_

* Bump the default Go distribution to 1.5.2.
`RB #3208 <https://rbcommons.com/s/twitter/r/3208>`_

0.0.63 (12/04/2015)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
unicode_literals, with_statement)


VERSION = '0.0.63'
VERSION = '0.0.64'

0 comments on commit a819e10

Please sign in to comment.