From 6548865a19d4c880f9df6bc20ddcf3b847f36aed Mon Sep 17 00:00:00 2001 From: Gerome Fournier Date: Tue, 22 Nov 2022 19:19:42 +0100 Subject: [PATCH] Fix regression introduced in 1.6.5 release --- CHANGELOG.md | 3 +++ PKG-INFO | 4 ++-- README.md | 4 ++-- setup.py | 9 ++++----- texttable.py | 2 +- 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4eba32..9173e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Version History +v1.6.6 (2022-11-22) +* Fix regression introduced in 1.6.5 release (https://github.com/foutaise/texttable/issues/83) + v1.6.5 (2022-11-20) * Modify setup.py to include missing stub file in wheel package (https://github.com/foutaise/texttable/issues/82) diff --git a/PKG-INFO b/PKG-INFO index a76ca14..1c72349 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 1.0 Name: texttable -Version: 1.6.5 +Version: 1.6.6 Summary: module to create 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.5.tar.gz +Download-URL: https://github.com/foutaise/texttable/archive/v1.6.6.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 b3fdc92..7c843b4 100644 --- a/README.md +++ b/README.md @@ -219,10 +219,10 @@ DATA __author__ = 'Gerome Fournier ' __credits__ = 'Jeff Kowalczyk:\n - textwrap improved import\n ...at... __license__ = 'MIT' - __version__ = '1.6.5' + __version__ = '1.6.6' VERSION - 1.6.5 + 1.6.6 AUTHOR Gerome Fournier diff --git a/setup.py b/setup.py index 2a6b664..8b7aa97 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ #!/usr/bin/env python # # texttable - module to create simple ASCII tables -# Copyright (C) 2003-2020 Gerome Fournier +# Copyright (C) 2003-2022 Gerome Fournier from setuptools import setup -import sys DESCRIPTION = "module to create simple ASCII tables" @@ -13,14 +12,14 @@ setup( name="texttable", - version="1.6.5", + version="1.6.6", author="Gerome Fournier", author_email="jef@foutaise.org", url="https://github.com/foutaise/texttable/", - download_url="https://github.com/foutaise/texttable/archive/v1.6.4.tar.gz", + download_url="https://github.com/foutaise/texttable/archive/v1.6.6.tar.gz", license="MIT", py_modules=["texttable"], - data_files=[('./lib/python{}.{}/site-packages'.format(*sys.version_info[:2]), ['texttable.pyi'])], + data_files=[('stub', ['texttable.pyi'])], description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", diff --git a/texttable.py b/texttable.py index 4ce8506..362df71 100644 --- a/texttable.py +++ b/texttable.py @@ -63,7 +63,7 @@ __author__ = 'Gerome Fournier ' __license__ = 'MIT' -__version__ = '1.6.5' +__version__ = '1.6.6' __credits__ = """\ Jeff Kowalczyk: - textwrap improved import