diff --git a/CHANGELOG b/CHANGELOG index 9a291c9..3df31e5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ jtbl changelog +20231124 v1.6.0 +- Add long options +- Add DocuWiki table option +- Add Bash and Zsh completions + 20231022 v1.5.3 - Add `-f` option for fancy table output diff --git a/jtbl/cli.py b/jtbl/cli.py index f7bbfa3..52c925f 100644 --- a/jtbl/cli.py +++ b/jtbl/cli.py @@ -7,7 +7,7 @@ import tabulate import shutil -__version__ = '1.5.3' +__version__ = '1.6.0' SUCCESS, ERROR = True, False diff --git a/setup.py b/setup.py index ca0a0ae..a6db681 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='jtbl', - version='1.5.3', + version='1.6.0', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='A simple cli tool to print JSON and JSON Lines data as a table in the terminal.',