diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 76f56ce..6311a13 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +0.2.1 (2020-03-05) +------------------ + +* Fixed flood with empty span + + 0.2.0 (2020-02-01) ------------------ diff --git a/README.rst b/README.rst index ee4fa2c..ff6f535 100644 --- a/README.rst +++ b/README.rst @@ -40,9 +40,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.org/project/hexrec/ -.. |commits-since| image:: https://img.shields.io/github/commits-since/TexZK/hexrec/v0.2.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/TexZK/hexrec/v0.2.1.svg :alt: Commits since latest release - :target: https://github.com/TexZK/hexrec/compare/v0.2.0...master + :target: https://github.com/TexZK/hexrec/compare/v0.2.1...master .. |wheel| image:: https://img.shields.io/pypi/wheel/hexrec.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index d0f5e0b..d38ca01 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ year = '2020' author = 'Andrea Zoppi' copyright = '{0}, {1}'.format(year, author) -version = release = '0.2.0' +version = release = '0.2.1' pygments_style = 'trac' templates_path = ['_templates'] diff --git a/setup.py b/setup.py index 35e21f0..9552f4e 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def read(*names, **kwargs): setup( name='hexrec', - version='0.2.0', + version='0.2.1', license='BSD 2-Clause License', description='Library to handle hexadecimal record files', long_description='%s\n%s' % ( diff --git a/src/hexrec/__init__.py b/src/hexrec/__init__.py index 458774d..93ab895 100644 --- a/src/hexrec/__init__.py +++ b/src/hexrec/__init__.py @@ -25,4 +25,4 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. -__version__ = '0.2.0' +__version__ = '0.2.1'