diff --git a/README.rst b/README.rst index 8ac6281b..fe9044ff 100644 --- a/README.rst +++ b/README.rst @@ -72,6 +72,12 @@ Changelog This project adheres to `Semantic Versioning `_. +3.1.0 - 2016-10-16 +------------------ + +Added + * ``git --porcelain``-like table by liiight: https://github.com/Robpol86/terminaltables/pull/31 + 3.0.0 - 2016-05-30 ------------------ @@ -106,7 +112,8 @@ Added Changed * Refactored code. No new features. - * Breaking changes: `UnixTable`/`WindowsTable`/`WindowsTableDouble` moved. Use `SingleTable`/`DoubleTable` instead. + * Breaking changes: ``UnixTable``/``WindowsTable``/``WindowsTableDouble`` moved. Use ``SingleTable``/``DoubleTable`` + instead. 1.2.1 - 2015-09-03 ------------------ diff --git a/setup.py b/setup.py index 15058bd6..0bc7bf28 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ INSTALL_REQUIRES = [] LICENSE = 'MIT' NAME = IMPORT = 'terminaltables' -VERSION = '3.0.0' +VERSION = '3.1.0' def readme(path='README.rst'): diff --git a/terminaltables/__init__.py b/terminaltables/__init__.py index 3856d602..6cea8138 100644 --- a/terminaltables/__init__.py +++ b/terminaltables/__init__.py @@ -14,4 +14,4 @@ __author__ = '@Robpol86' __license__ = 'MIT' -__version__ = '3.0.0' +__version__ = '3.1.0'