summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/changelog/1.20.3-changelog.rst4
-rw-r--r--doc/source/release/1.20.3-notes.rst4
-rwxr-xr-xsetup.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/doc/changelog/1.20.3-changelog.rst b/doc/changelog/1.20.3-changelog.rst
index 6e35716cc..df7f10565 100644
--- a/doc/changelog/1.20.3-changelog.rst
+++ b/doc/changelog/1.20.3-changelog.rst
@@ -16,7 +16,7 @@ names contributed a patch for the first time.
Pull requests merged
====================
-A total of 13 pull requests were merged for this release.
+A total of 15 pull requests were merged for this release.
* `#18763 <https://github.com/numpy/numpy/pull/18763>`__: BUG: Correct ``datetime64`` missing type overload for ``datetime.date``...
* `#18764 <https://github.com/numpy/numpy/pull/18764>`__: MAINT: Remove ``__all__`` in favor of explicit re-exports
@@ -31,3 +31,5 @@ A total of 13 pull requests were merged for this release.
* `#18924 <https://github.com/numpy/numpy/pull/18924>`__: MAINT, CI: treats _SIMD module build warnings as errors through...
* `#18925 <https://github.com/numpy/numpy/pull/18925>`__: BUG: for MINGW, threads.h existence test requires GLIBC > 2.12
* `#18941 <https://github.com/numpy/numpy/pull/18941>`__: BUG: Make changelog recognize gh- as a PR number prefix.
+* `#18948 <https://github.com/numpy/numpy/pull/18948>`__: REL, DOC: Prepare for the NumPy 1.20.3 release.
+* `#18953 <https://github.com/numpy/numpy/pull/18953>`__: BUG: Fix failing mypy test in 1.20.x.
diff --git a/doc/source/release/1.20.3-notes.rst b/doc/source/release/1.20.3-notes.rst
index 99001de37..8c25b3cc3 100644
--- a/doc/source/release/1.20.3-notes.rst
+++ b/doc/source/release/1.20.3-notes.rst
@@ -24,7 +24,7 @@ names contributed a patch for the first time.
Pull requests merged
====================
-A total of 13 pull requests were merged for this release.
+A total of 15 pull requests were merged for this release.
* `#18763 <https://github.com/numpy/numpy/pull/18763>`__: BUG: Correct ``datetime64`` missing type overload for ``datetime.date``...
* `#18764 <https://github.com/numpy/numpy/pull/18764>`__: MAINT: Remove ``__all__`` in favor of explicit re-exports
@@ -39,3 +39,5 @@ A total of 13 pull requests were merged for this release.
* `#18924 <https://github.com/numpy/numpy/pull/18924>`__: MAINT, CI: treats _SIMD module build warnings as errors through...
* `#18925 <https://github.com/numpy/numpy/pull/18925>`__: BUG: for MINGW, threads.h existence test requires GLIBC > 2.12
* `#18941 <https://github.com/numpy/numpy/pull/18941>`__: BUG: Make changelog recognize gh- as a PR number prefix.
+* `#18948 <https://github.com/numpy/numpy/pull/18948>`__: REL, DOC: Prepare for the NumPy 1.20.3 release.
+* `#18953 <https://github.com/numpy/numpy/pull/18953>`__: BUG: Fix failing mypy test in 1.20.x.
diff --git a/setup.py b/setup.py
index 65cbd8719..0a925eb3b 100755
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,7 @@ Operating System :: MacOS
MAJOR = 1
MINOR = 20
MICRO = 3
-ISRELEASED = False
+ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
# The first version not in the `Programming Language :: Python :: ...` classifiers above