Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for release 1.8.0dev3 #5937

Merged
merged 3 commits into from
Jun 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Jon Boulle <jon@twitter.com>
John Sirois <jsirois@twitter.com>
Kris Wilson <kwilson@twopensource.com>
Larry Hosken <mister@lahosken.san-francisco.ca.us>
Lawrence Finn <larry@actioniq.co>
Leo Kim <leo@foursquare.com>
Marius Eriksen <marius@monkey.org>
Mark Chu-Carroll <markcc@foursquare.com>
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Created by running `./build-support/bin/contributors.sh`.
+ Aaron Mitchell
+ Adam Chainz
+ Alan Paulin
+ Alan Velasco
+ Alexander Johnson
+ Alyssa Pohahau
+ Andrew Hamilton
Expand Down Expand Up @@ -99,6 +100,7 @@ Created by running `./build-support/bin/contributors.sh`.
+ Kushal Dave
+ Kyle Derr
+ Larry Hosken
+ Lawrence Finn
+ Le Nucksi
+ Lei Wang
+ Leo Kim
Expand Down
2 changes: 1 addition & 1 deletion src/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ the release manager may also need to do a release from a stable branch.*
[docs reference](http://www.pantsbuild.org/docs#generating-the-site)
4. Bring the CONTRIBUTORS roster in
[CONTRIBUTORS.md](https://github.com/pantsbuild/pants/tree/master/CONTRIBUTORS.md)
up to date by running `build-support/bin/contributors.sh`.
up to date by running `./build-support/bin/contributors.sh`.
5. Create and land a review for changes in the master branch.
6. Execute the release as described later on this page.
7. Finally, if creating a release candidate, create the stable branch from the commit in
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.0.dev2
1.8.0.dev3
75 changes: 75 additions & 0 deletions src/python/pants/notes/master.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,81 @@ Master Pre-Releases
This document describes ``dev`` releases which occur weekly from master, and which do
not undergo the vetting associated with ``stable`` releases.

1.8.0dev3 (06/08/2018)
----------------------

New features
~~~~~~~~~~~~

* Initial @rules for Options computation via the engine. (#5889)
`PR #5889 <https://github.com/pantsbuild/pants/pull/5889>`_

* Pantsd terminates if its pidfile changes (#5877)
`PR #5877 <https://github.com/pantsbuild/pants/pull/5877>`_

* Populate output_directory in ExecuteProcessResponse (#5896)
`PR #5896 <https://github.com/pantsbuild/pants/pull/5896>`_

* Add support for passing an incremental_import option via idea-plugin (#5886)
`PR #5886 <https://github.com/pantsbuild/pants/pull/5886>`_

Bugfixes
~~~~~~~~

* Fix `SelectInterpreter` read of `interpreter.path` (#5925)
`PR #5925 <https://github.com/pantsbuild/pants/pull/5925>`_

* Fix rust log level comparison (#5918)
`PR #5918 <https://github.com/pantsbuild/pants/pull/5918>`_

* Fix a trivial bug in error reporting in the kythe indexing task. (#5913)
`PR #5913 <https://github.com/pantsbuild/pants/pull/5913>`_

Refactoring, Improvements, and Tooling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Put the ChangeCalculator implementation next to TargetRootsCalculator (#5917)
`PR #5917 <https://github.com/pantsbuild/pants/pull/5917>`_

* Remove sdist publishing hack. (#5926)
`PR #5926 <https://github.com/pantsbuild/pants/pull/5926>`_

* Upgrade to pex 1.4.3. (#5910)
`PR #5910 <https://github.com/pantsbuild/pants/pull/5910>`_

* Kill unused legacy code. (#5921)
`PR #5921 <https://github.com/pantsbuild/pants/pull/5921>`_

* Add @classproperty (#5901)
`PR #5901 <https://github.com/pantsbuild/pants/pull/5901>`_

* Simplify PathGlobs python datatype (#5915)
`PR #5915 <https://github.com/pantsbuild/pants/pull/5915>`_

* Split short-form from long-form of setup_legacy_graph (#5911)
`PR #5911 <https://github.com/pantsbuild/pants/pull/5911>`_

* Add Daniel McClanahan & Dorothy Ordogh to committers (#5909)
`PR #5909 <https://github.com/pantsbuild/pants/pull/5909>`_

* Merge Root/Inner Entry cases into an EntryWithDeps case. (#5914)
`PR #5914 <https://github.com/pantsbuild/pants/pull/5914>`_

* Make mock test server emit timing data (#5891)
`PR #5891 <https://github.com/pantsbuild/pants/pull/5891>`_

* Update release jvm docs to have notes about gpg 2.1 (#5907)
`PR #5907 <https://github.com/pantsbuild/pants/pull/5907>`_

* Set output_files field on remote Action (#5902)
`PR #5902 <https://github.com/pantsbuild/pants/pull/5902>`_

* From<Digest> no longer panics (#5832)
`PR #5832 <https://github.com/pantsbuild/pants/pull/5832>`_

* Use tempfile crate not tempdir crate (#5900)
`PR #5900 <https://github.com/pantsbuild/pants/pull/5900>`_

1.8.0.dev2 (06/02/2018)
-----------------------

Expand Down