diff --git a/CHANGES.rst b/CHANGES.rst index 62cac2f0bbc9c314e0047fea778273e80875f453..1acc7b0011abc2c28b2ba34c741ee363d36c1315 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,12 +4,28 @@ Changelog This is a record of changes made between each Mutalyzer release. -Version 2.0.15 +Version 2.0.16 -------------- Release date to be decided. +Version 2.0.15 +-------------- + +Released on January 6th 2016. + +- Speedup NCBI mapview file import (`#124 + <https://github.com/mutalyzer/mutalyzer/pull/124>`_). +- Parse genbank file without VERSION field (`#126 + <https://github.com/mutalyzer/mutalyzer/pull/126>`_). +- Fix issue where some transcripts would not show in the legend (`#136 + <https://github.com/mutalyzer/mutalyzer/pull/136>`_). +- Don't discard complete gene from GenBank file when it has incomplete but + also complete features annotated (`#138 + <https://github.com/mutalyzer/mutalyzer/pull/138>`_) + + Version 2.0.14 -------------- diff --git a/LICENSE.rst b/LICENSE.rst index 0a02d7994ed6406217d81b228b159581e06baeac..9b0f9570ea7d9d397216395320efd2515bcce746 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,4 +1,4 @@ -Copyright (c) 2009-2015 by Leiden University Medical Center and contributors +Copyright (c) 2009-2016 by Leiden University Medical Center and contributors (see the AUTHORS.rst file for details). The Mutalyzer source code is licensed under the `GNU Affero General Public diff --git a/README.rst b/README.rst index 540bc7cce4cd49590033f77bfd34cf5131bf10fc..9c1af06475cceaab04634eca9b305bdbb585191d 100644 --- a/README.rst +++ b/README.rst @@ -35,7 +35,7 @@ Please refer to the documentation for `more information on contributions Copyright --------- -Mutalyzer is copyright (c) 2009-2015 by Leiden University Medical Center and +Mutalyzer is copyright (c) 2009-2016 by Leiden University Medical Center and contributors (see the AUTHORS.rst file for details). Mutalyzer is licensed under the `GNU Affero General Public License diff --git a/mutalyzer/__init__.py b/mutalyzer/__init__.py index cc505b8e96229919021108a6f9a975fff2b85d58..9f0dbf4197d25526c980749a0a5e46597ca927f8 100644 --- a/mutalyzer/__init__.py +++ b/mutalyzer/__init__.py @@ -21,8 +21,8 @@ from __future__ import unicode_literals # [1] http://peak.telecommunity.com/DevCenter/setuptools#specifying-your-project-s-version # [2] http://semver.org/ -__version_info__ = ('2', '0', '15', 'dev') -__date__ = '9 Nov 2015' +__version_info__ = ('2', '0', '16', 'dev') +__date__ = '6 Jan 2016' __version__ = '.'.join(__version_info__)