Skip to content

Commit

Permalink
Prepare for release 0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Apr 16, 2021
1 parent a189d45 commit 1e9c2ae
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
30 changes: 30 additions & 0 deletions doc/release/0.1.21-notes.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
=============================
PyEDFlib 0.1.21 Release Notes
=============================

.. contents::

- Include unit tests into python package
- Add manylinux builds
- Fix unit test für ARM

Authors
=======

* Holger Nahrstaedt
* skjerns

Issues closed for v0.1.21
-------------------------
* Fix issue #99 - The pyedflib File Package does not support Chinese path
* Fix issue #105 - Take hours/days to write signals into edf file using highlevel.write_edf?
* Fix issue #109 - highlevel.read_edf fails with ValueError

Pull requests for v0.1.21
-------------------------
* PR #100 - adding unicode read/write tests + workaround windows unicode files
* PR #103 - Verbose options default to False
* PR #106 - add warnings for header length
* PR #107 - Prevent fortran layout
* PR #109 - Round sample rates up to 3 decimals not to int
* PR #116 - fixed wrong variable use in rename_channel function
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

# General information about the project.
project = u'pyEDFlib'
copyright = u'2015 - 2020, Holger Nahrstaedt'
copyright = u'2015 - 2021, Holger Nahrstaedt'
author = u'Holger Nahrstaedt'

# The version info for the project you're documenting, acts as replacement for
Expand Down
1 change: 1 addition & 0 deletions doc/source/release.0.1.21.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../release/0.1.21-notes.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
MAJOR = 0
MINOR = 1
MICRO = 21
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

# Version of Numpy required for setup
Expand Down

0 comments on commit 1e9c2ae

Please sign in to comment.