Skip to content

Commit

Permalink
REL: set version to 1.3.0.dev0 and add 1.3.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjereddy committed Nov 9, 2018
1 parent 12a03ad commit 24617a2
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 3 deletions.
53 changes: 53 additions & 0 deletions doc/release/1.3.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
==========================
SciPy 1.3.0 Release Notes
==========================

.. note:: Scipy 1.3.0 is not released yet!

.. contents::

SciPy 1.3.0 is the culmination of X months of hard work. It contains
many new features, numerous bug-fixes, improved test coverage and better
documentation. There have been a number of deprecations and API changes
in this release, which are documented below. All users are encouraged to
upgrade to this release, as there are a large number of bug-fixes and
optimizations. Before upgrading, we recommend that users check that
their own code does not use deprecated SciPy functionality (to do so,
run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).
Our development attention will now shift to bug-fix releases on the
1.3.x branch, and on adding new features on the master branch.

This release requires Python 2.7 or 3.4+ and NumPy 1.8.2 or greater.

For running on PyPy, PyPy3 6.0+ and NumPy 1.15.0 are required.

Highlights of this release
--------------------------

-

New features
============


Deprecated features
===================


Backwards incompatible changes
==============================


Other changes
=============


Authors
=======


Issues closed
-------------

Pull requests
-------------
1 change: 1 addition & 0 deletions doc/source/release.1.3.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/1.3.0-notes.rst
1 change: 1 addition & 0 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 1

release.1.3.0
release.1.2.0
release.1.1.0
release.1.0.1
Expand Down
4 changes: 2 additions & 2 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@
#-----------------------------------

# Source of the release notes
RELEASE = 'doc/release/1.2.0-notes.rst'
RELEASE = 'doc/release/1.3.0-notes.rst'

# Start/end of the log (from git)
LOG_START = 'v1.1.0'
LOG_START = 'v1.2.0'
LOG_END = 'master'


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

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

0 comments on commit 24617a2

Please sign in to comment.