From 36fb4e129e8b99c3691965b47c462b5b115c7941 Mon Sep 17 00:00:00 2001 From: Gerome Fournier Date: Mon, 1 Jul 2019 11:45:36 +0200 Subject: [PATCH] Switch to version 1.6.2 --- CHANGELOG.md | 3 +++ PKG-INFO | 4 ++-- README.md | 4 ++-- setup.py | 4 ++-- texttable.py | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0726e2c..1a90c90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Version History +v1.6.2 (2019-07-01) +* Fix auto-formatting NaN (https://github.com/foutaise/texttable/pull/60) + v1.6.1 (2019-02-15) * Include tests, license in source tarball (https://github.com/foutaise/texttable/issues/58) * Add changelog diff --git a/PKG-INFO b/PKG-INFO index 659f0f0..83b590c 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 1.0 Name: texttable -Version: 1.6.1 +Version: 1.6.2 Summary: module for creating simple ASCII tables Home-page: https://github.com/foutaise/texttable/ Author: Gerome Fournier Author-email: jef@foutaise.org License: MIT -Download-URL: https://github.com/foutaise/texttable/archive/v1.6.1.tar.gz +Download-URL: https://github.com/foutaise/texttable/archive/v1.6.2.tar.gz Description: texttable is a module to generate a formatted text table, using ASCII characters. Platform: any diff --git a/README.md b/README.md index e04dd7d..9c77d3d 100644 --- a/README.md +++ b/README.md @@ -218,10 +218,10 @@ DATA __author__ = 'Gerome Fournier ' __credits__ = 'Jeff Kowalczyk:\n - textwrap improved import\n ...at... __license__ = 'MIT' - __version__ = '1.6.1' + __version__ = '1.6.2' VERSION - 1.6.1 + 1.6.2 AUTHOR Gerome Fournier diff --git a/setup.py b/setup.py index 165e4ee..d0a183e 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ setup( name="texttable", - version="1.6.1", + version="1.6.2", author="Gerome Fournier", author_email="jef@foutaise.org", url="https://github.com/foutaise/texttable/", - download_url="https://github.com/foutaise/texttable/archive/v1.6.1.tar.gz", + download_url="https://github.com/foutaise/texttable/archive/v1.6.2.tar.gz", license="MIT", py_modules=["texttable"], description=DESCRIPTION, diff --git a/texttable.py b/texttable.py index e9bdb68..3806152 100644 --- a/texttable.py +++ b/texttable.py @@ -62,7 +62,7 @@ __author__ = 'Gerome Fournier ' __license__ = 'MIT' -__version__ = '1.6.1' +__version__ = '1.6.2' __credits__ = """\ Jeff Kowalczyk: - textwrap improved import