Skip to content

Commit

Permalink
Switch to version 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
foutaise committed Oct 3, 2023
1 parent 96f50e7 commit b4c00a6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 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.7.0 (2023-10-03)
* Add boolean formatting option (https://github.com/foutaise/texttable/pull/89)

v1.6.7 (2022-11-23)
* Get rid of stub file in wheel package (https://github.com/foutaise/texttable/issues/84)

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.7
Version: 1.7.0
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.7.tar.gz
Download-URL: https://github.com/foutaise/texttable/archive/v1.7.0.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 @@ -220,10 +220,10 @@ DATA
__author__ = 'Gerome Fournier <jef(at)foutaise.org>'
__credits__ = 'Jeff Kowalczyk:\n - textwrap improved import\n ...at...
__license__ = 'MIT'
__version__ = '1.6.7'
__version__ = '1.7.0'
VERSION
1.6.7
1.7.0
AUTHOR
Gerome Fournier <jef(at)foutaise.org>
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
#
# texttable - module to create simple ASCII tables
# Copyright (C) 2003-2022 Gerome Fournier <jef(at)foutaise.org>
# Copyright (C) 2003-2023 Gerome Fournier <jef(at)foutaise.org>

from setuptools import setup

Expand All @@ -12,11 +12,11 @@

setup(
name="texttable",
version="1.6.7",
version="1.7.0",
author="Gerome Fournier",
author_email="jef@foutaise.org",
url="https://github.com/foutaise/texttable/",
download_url="https://github.com/foutaise/texttable/archive/v1.6.7.tar.gz",
download_url="https://github.com/foutaise/texttable/archive/v1.7.0.tar.gz",
license="MIT",
py_modules=["texttable"],
description=DESCRIPTION,
Expand Down
4 changes: 2 additions & 2 deletions texttable.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# texttable - module to create simple ASCII tables
# Copyright (C) 2003-2022 Gerome Fournier <jef(at)foutaise.org>
# Copyright (C) 2003-2023 Gerome Fournier <jef(at)foutaise.org>

"""module to create simple ASCII tables
Expand Down Expand Up @@ -63,7 +63,7 @@

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

0 comments on commit b4c00a6

Please sign in to comment.