Skip to content

Commit

Permalink
MAINT: Prepare master for 1.18.0 development.
Browse files Browse the repository at this point in the history
- Create release notes.
- Update pavement.py.
- Update setup.py
  • Loading branch information
charris committed Jun 30, 2019
1 parent 27d77ce commit cde9a2e
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
43 changes: 43 additions & 0 deletions doc/release/1.18.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
==========================
NumPy 1.18.0 Release Notes
==========================


Highlights
==========


New functions
=============


Deprecations
============


Future Changes
==============


Expired deprecations
====================


Compatibility notes
===================


C API changes
=============


New Features
============


Improvements
============


Changes
=======
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Release Notes
*************

.. include:: ../release/1.18.0-notes.rst
.. include:: ../release/1.17.0-notes.rst
.. include:: ../release/1.16.4-notes.rst
.. include:: ../release/1.16.3-notes.rst
Expand Down
2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#-----------------------------------

# Path to the release notes
RELEASE_NOTES = 'doc/release/1.17.0-notes.rst'
RELEASE_NOTES = 'doc/release/1.18.0-notes.rst'


#-------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"""

MAJOR = 1
MINOR = 17
MINOR = 18
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
Expand Down

0 comments on commit cde9a2e

Please sign in to comment.