Skip to content

Commit df38d01

Browse files
authored
Prepare 1.16.0.dev4 (#7662)
Prepare `1.16.0.dev4`, and add some header-generation help to the `release-changelog-helper.sh` script.
1 parent 92cfc9f commit df38d01

File tree

3 files changed

+87
-1
lines changed

3 files changed

+87
-1
lines changed

build-support/bin/release-changelog-helper.sh

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,36 @@ else
3636
LAST_RELEASE_SHA="$1"
3737
fi
3838

39+
echo
40+
echo "Potentially relevant headers:"
41+
echo "----------------------------------------------------------------------------------------------------"
42+
cat <<EOF
43+
44+
API Changes
45+
~~~~~~~~~~~
46+
47+
48+
New Features
49+
~~~~~~~~~~~~
50+
51+
52+
Bugfixes
53+
~~~~~~~~
54+
55+
56+
Refactoring, Improvements, and Tooling
57+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
58+
59+
60+
Documentation
61+
~~~~~~~~~~~~~
62+
63+
64+
EOF
65+
3966
echo
4067
echo "Changes since ${LAST_RELEASE_SHA}:"
68+
echo "----------------------------------------------------------------------------------------------------"
4169
echo
4270

4371
for sha in `git log --format="format:%H" HEAD ^${LAST_RELEASE_SHA}`

src/python/pants/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.0.dev3
1+
1.16.0.dev4

src/python/pants/notes/master.rst

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,64 @@ Master Pre-Releases
44
This document describes development releases which occur weekly from master, and which have
55
not undergone the vetting associated with ``stable`` releases.
66

7+
1.16.0.dev4 (5/06/2019)
8+
-----------------------
9+
10+
New Features
11+
~~~~~~~~~~~~
12+
13+
* Remote Execution allows extra platform properties to be set (#7650)
14+
`PR #7650 <https://github.com/pantsbuild/pants/pull/7650>`_
15+
16+
* add suffix and Levenshtein matching for invalid option names (#7637)
17+
`PR #7637 <https://github.com/pantsbuild/pants/pull/7637>`_
18+
19+
Bugfixes
20+
~~~~~~~~
21+
22+
* Apply timeouts to pex resolves (#7659)
23+
`PEX Issue #26 <http://github.com/pantsbuild/pex/issues/26>`_
24+
`PR #7659 <https://github.com/pantsbuild/pants/pull/7659>`_
25+
26+
* pin the PEX_PYTHON{,_PATH} running the pytest pex to avoid using incompatible pytest requirements (#7563)
27+
`PR #7563 <https://github.com/pantsbuild/pants/pull/7563>`_
28+
29+
* Fix hasattr on Payload (#7432)
30+
`PR #7432 <https://github.com/pantsbuild/pants/pull/7432>`_
31+
32+
* Two targets can swap positions with pantsd (again) (#7642)
33+
`PR #7642 <https://github.com/pantsbuild/pants/pull/7642>`_
34+
35+
Refactoring, Improvements, and Tooling
36+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
37+
38+
* pantsd runs no longer fork (#7596)
39+
`PR #7596 <https://github.com/pantsbuild/pants/pull/7596>`_
40+
41+
* Replace externs::eval with externs::none (#7646)
42+
`PR #7646 <https://github.com/pantsbuild/pants/pull/7646>`_
43+
44+
* Add the possibility to ignore sigint from other threads (#7623)
45+
`PR #7623 <https://github.com/pantsbuild/pants/pull/7623>`_
46+
47+
* Name threads that the daemon starts (#7639)
48+
`PR #7639 <https://github.com/pantsbuild/pants/pull/7639>`_
49+
50+
* Add testing for improved error message from #7628 when no valid interpreter can be resolved (#7630)
51+
`PR #7630 <https://github.com/pantsbuild/pants/pull/7630>`_
52+
53+
* Extend pantsd test timeout (#7527)
54+
`PR #7527 <https://github.com/pantsbuild/pants/pull/7527>`_
55+
56+
* Skip flaky test (#7638)
57+
`PR #7638 <https://github.com/pantsbuild/pants/pull/7638>`_
58+
59+
* Use TryInto instead of custom types (#7542)
60+
`PR #7542 <https://github.com/pantsbuild/pants/pull/7542>`_
61+
62+
* use upstream rustup init script download workaround for old curl version on CentOS6 (#7619)
63+
`PR #7619 <https://github.com/pantsbuild/pants/pull/7619>`_
64+
765
1.16.0.dev3 (4/27/2019)
866
-----------------------
967

0 commit comments

Comments
 (0)