diff --git a/CHANGES.rst b/CHANGES.rst index 75aa5f11211039a1a962e083ae410fd3aba27138..50e4e55af0aa773ca9f9400c6bca3cad20871d7c 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.10 +Version 2.0.11 -------------- Release date to be decided. +Version 2.0.10 +-------------- + +Released on July 21st 2015. + +- Don't crash the position converter on transcript mappings containing no + exons (`#63 + <https://github.com/mutalyzer/mutalyzer/pull/63>`_). +- Use the notation for an uncertain stop codon, e.g., `p.(Gln730Profs*?)` + instead of `p.(Gln730Profs*96)` when a variant results in a frame shift or + extension and we don't see a new stop codon in the RNA (`#57 + <https://github.com/mutalyzer/mutalyzer/pull/57>`_). +- Added Dog (Broad CanFam3.1/canFam3) assembly for position converter (`#56 + <https://github.com/mutalyzer/mutalyzer/pull/56>`_). + + Version 2.0.9 ------------- diff --git a/mutalyzer/__init__.py b/mutalyzer/__init__.py index e4acbae22e5efb0ce0ee3c4a4397b55d5dd1ca53..5e23bd946d2d61d8bbb956ed66bda951889fdbe0 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', '10', 'dev') -__date__ = '9 Jul 2015' +__version_info__ = ('2', '0', '11', 'dev') +__date__ = '21 Jul 2015' __version__ = '.'.join(__version_info__)