Skip to content

Commit b1de4b1

Browse files
committed
REL: prepare 1.18.x for further development.
1 parent 91118b3 commit b1de4b1

File tree

4 files changed

+55
-3
lines changed

4 files changed

+55
-3
lines changed

doc/source/release.rst

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release Notes
55
.. toctree::
66
:maxdepth: 3
77

8+
1.18.1 <release/1.18.2-notes>
89
1.18.1 <release/1.18.1-notes>
910
1.18.0 <release/1.18.0-notes>
1011
1.17.5 <release/1.17.5-notes>

doc/source/release/1.18.2-notes.rst

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.. currentmodule:: numpy
2+
3+
==========================
4+
NumPy 1.18.2 Release Notes
5+
==========================
6+
7+
This release contains fixes for bugs reported against NumPy 1.18.1.
8+
9+
The Python versions supported in this release are 3.5-3.8. Downstream
10+
developers should use Cython >= 0.29.14 for Python 3.8 support and OpenBLAS >=
11+
3.7 to avoid errors on the Skylake architecture.
12+
13+
14+
Highlights
15+
==========
16+
17+
18+
New functions
19+
=============
20+
21+
22+
Deprecations
23+
============
24+
25+
26+
Future Changes
27+
==============
28+
29+
30+
Expired deprecations
31+
====================
32+
33+
34+
Compatibility notes
35+
===================
36+
37+
38+
C API changes
39+
=============
40+
41+
42+
New Features
43+
============
44+
45+
46+
Improvements
47+
============
48+
49+
50+
Changes
51+
=======

pavement.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#-----------------------------------
4242

4343
# Path to the release notes
44-
RELEASE_NOTES = 'doc/source/release/1.18.1-notes.rst'
44+
RELEASE_NOTES = 'doc/source/release/1.18.2-notes.rst'
4545

4646

4747
#-------------------------------------------------------

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858

5959
MAJOR = 1
6060
MINOR = 18
61-
MICRO = 1
62-
ISRELEASED = True
61+
MICRO = 2
62+
ISRELEASED = False
6363
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
6464

6565

0 commit comments

Comments
 (0)