Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions doc/release/1.1.0-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
==============================
PyWavelets 1.1.0 Release Notes
==============================

.. contents::

We are very pleased to announce the release of PyWavelets 1.1.

This release requires Python >=3.5 and has dropped Python 2.7 support.

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

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

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

Bugs Fixed
==========

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

Authors
=======

Issues closed for v1.1.0
------------------------

Pull requests for v1.1.0
------------------------
1 change: 1 addition & 0 deletions doc/source/release.1.1.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/1.1.0-notes.rst
1 change: 1 addition & 0 deletions doc/source/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Release Notes
release.0.4.0
release.0.5.0
release.1.0.0
release.1.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


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