Skip to content

Commit

Permalink
Prepare the 1.2.0-dev6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuhood committed Aug 26, 2016
1 parent ab14005 commit bafcce7
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,16 @@ the release manager may also need to do a release from a stable branch.*

* ###Preparation for the release from the master branch
1. Edit the version number in `src/python/pants/version.py`
2. Update `src/python/pants/notes/master.rst` to reflect the changes for this week.
2. Update `src/python/pants/notes/master.rst` to reflect the changes for this week (can use
`build-support/bin/release-changelog-helper.sh` to get a head start).
3. If this release is also a release candidate then:
* Update the corresponding notes file for that release. <br/>
_For example if you were releasing `1.2.0rc0` you would need to
create `src/python/pants/notes/1.2.x.rst`._
* Add the file to pants.ini in the branch_notes section.
* Add the new notes file to `src/docs/docsite.json`.
* Create a new page() in `src/python/pants/notes/BUILD` corresponding to the new notes. <br/>
For addtional information on generating documenation see the
For additional information on generating documentation see the
[docs reference](http://pantsbuild.github.io/docs#generating-the-site)
4. Bring the CONTRIBUTORS roster (from master) in
[CONTRIBUTORS.md](https://github.com/pantsbuild/pants/tree/master/CONTRIBUTORS.md)
Expand All @@ -110,7 +111,8 @@ the release manager may also need to do a release from a stable branch.*
whether a release is needed from a stable branch.
1. Cherry pick changes that have been identified in the [backport proposals](https://docs.google.com/spreadsheets/d/12rsaVVhmSXrMVlZV6PUu5uzsKNNcceP9Lpf7rpju_IE/edit#gid=0)
2. In your release branch: Edit the version number in `src/python/pants/version.py`
3. Update `src/python/pants/notes/*.rst` to reflect the changes for this week. For example if
3. Update `src/python/pants/notes/*.rst` to reflect the changes for this week (can use
`build-support/bin/release-changelog-helper.sh` to get a head start). For example if
you were releasing 1.2.0rc1 you would need to create `src/python/pants/notes/1.2.x.rst`.
4. Cherry pick changes to branch specific notes back to master.
5. Create a review for changes in the stable branch and indicate the stable
Expand Down
35 changes: 35 additions & 0 deletions src/python/pants/notes/master.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,41 @@ 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.2.0-dev6 (8/26/2016)
----------------------

Regularly scheduled unstable release. Thanks to the contributors!

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

* A clear error message for checkstyle misconfiguration.
`RB #4176 <https://rbcommons.com/s/twitter/r/4176>`_

Bugfixes
~~~~~~~~

* Performance fix for consolidated classpath
`RB #4184 <https://rbcommons.com/s/twitter/r/4184>`_

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

* Refactor classpath consolidation into a separate task.
`RB #4152 <https://rbcommons.com/s/twitter/r/4152>`_

* Refactor idea-plugin goal
`RB #4159 <https://rbcommons.com/s/twitter/r/4159>`_

* Remove all calls to create_subsystem() in tests.
`RB #4178 <https://rbcommons.com/s/twitter/r/4178>`_

New Engine Work
~~~~~~~~~~~~~~~

* Support exclude_target_regexps and ignore_patterns in v2 engine
`RB #4172 <https://rbcommons.com/s/twitter/r/4172>`_

1.2.0-dev5 (8/19/2016)
----------------------

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 @@ -8,6 +8,6 @@
from pants.base.revision import Revision


VERSION = '1.2.0-dev5'
VERSION = '1.2.0-dev6'

PANTS_SEMVER = Revision.semver(VERSION)

0 comments on commit bafcce7

Please sign in to comment.