Skip to content

Commit

Permalink
Fix regression introduced in 1.6.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
foutaise committed Nov 22, 2022
1 parent 0a18fc5 commit 6548865
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ DATA
__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__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 <jef(at)foutaise.org>
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env python
#
# texttable - module to create simple ASCII tables
# Copyright (C) 2003-2020 Gerome Fournier <jef(at)foutaise.org>
# Copyright (C) 2003-2022 Gerome Fournier <jef(at)foutaise.org>

from setuptools import setup
import sys

DESCRIPTION = "module to create simple ASCII tables"

Expand All @@ -13,14 +12,14 @@

setup(
name="texttable",
version="1.6.5",
version="1.6.6",
author="Gerome Fournier",
author_email="[email protected]",
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",
Expand Down
2 changes: 1 addition & 1 deletion texttable.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__license__ = 'MIT'
__version__ = '1.6.5'
__version__ = '1.6.6'
__credits__ = """\
Jeff Kowalczyk:
- textwrap improved import
Expand Down

0 comments on commit 6548865

Please sign in to comment.