summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-01-01 11:42:25 -0700
committerGitHub <noreply@github.com>2017-01-01 11:42:25 -0700
commitbeac5d5c5313e6f0caff76d6a52faf0e8318d7b8 (patch)
tree7ffe3d4592990e6f2531cefd7e1a0a88cf24c776
parent54abe004e3d9e4b20c28965d0b19a04ef4b8cfcf (diff)
parentf993e0701e1e4cfe199997de3c56098991d739ea (diff)
downloadnumpy-beac5d5c5313e6f0caff76d6a52faf0e8318d7b8.tar.gz
Merge pull request #8439 from charris/update-1.12.0-notes
DOC: Update 1.12.0 release notes.
-rw-r--r--doc/release/1.12.0-notes.rst20
-rwxr-xr-xtools/announce.py4
2 files changed, 15 insertions, 9 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst
index dcd74b657..05d7d347e 100644
--- a/doc/release/1.12.0-notes.rst
+++ b/doc/release/1.12.0-notes.rst
@@ -495,14 +495,13 @@ python versions before 3.4, this can cause warnings to appear that were falsely
ignored before, which may be surprising especially in test suits.
-
-Contributors to maintenance/1.12.x
-==================================
+Contributors
+============
A total of 139 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.
-* Aditya Panchal
+* Aditya Panchal +
* Ales Erjavec +
* Alex Griffing
* Alexandr Shadchin +
@@ -642,10 +641,10 @@ names contributed a patch for the first time.
* Yu Feng +
* nevimov +
-Pull requests merged for maintenance/1.12.x
-===========================================
+Pull requests merged
+====================
-A total of 406 pull requests were merged for this release.
+A total of 413 pull requests were merged for this release.
* `#4073 <https://github.com/numpy/numpy/pull/4073>`__: BUG: change real output checking to test if all imaginary parts...
* `#4619 <https://github.com/numpy/numpy/pull/4619>`__: BUG : np.sum silently drops keepdims for sub-classes of ndarray
@@ -1054,3 +1053,10 @@ A total of 406 pull requests were merged for this release.
* `#8394 <https://github.com/numpy/numpy/pull/8394>`__: DOC: create 1.11.3 release notes.
* `#8399 <https://github.com/numpy/numpy/pull/8399>`__: BUG: Fix author search in announce.py
* `#8402 <https://github.com/numpy/numpy/pull/8402>`__: DOC, MAINT: Update 1.12.0 notes and mailmap.
+* `#8418 <https://github.com/numpy/numpy/pull/8418>`__: BUG: Fix ma.median even elements for 1.12
+* `#8424 <https://github.com/numpy/numpy/pull/8424>`__: DOC: Fix tools and release notes to be more markdown compatible.
+* `#8427 <https://github.com/numpy/numpy/pull/8427>`__: BUG: Add a lock to assert_equal and other testing functions
+* `#8431 <https://github.com/numpy/numpy/pull/8431>`__: BUG: Fix apply_along_axis() for when func1d() returns a non-ndarray.
+* `#8432 <https://github.com/numpy/numpy/pull/8432>`__: BUG: Let linspace accept input that has an array_interface.
+* `#8437 <https://github.com/numpy/numpy/pull/8437>`__: TST: Update 3.6-dev tests to 3.6 after Python final release.
+* `#8439 <https://github.com/numpy/numpy/pull/8439>`__: DOC: Update 1.12.0 release notes.
diff --git a/tools/announce.py b/tools/announce.py
index 9c43a80a3..05ea8cb36 100755
--- a/tools/announce.py
+++ b/tools/announce.py
@@ -110,7 +110,7 @@ def main(token, revision_range):
# document authors
authors = get_authors(revision_range)
- heading = u"Contributors to {0}".format(cur_release)
+ heading = u"Contributors"
print()
print(heading)
print(u"="*len(heading))
@@ -121,7 +121,7 @@ def main(token, revision_range):
# document pull requests
pull_requests = get_pull_requests(github_repo, revision_range)
- heading = u"Pull requests merged for {0}".format(cur_release)
+ heading = u"Pull requests merged"
pull_msg = u"* `#{0} <{1}>`__: {2}"
print()