diff --git a/CHANGES.md b/CHANGES.md index db02548..fbdaae6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Changes in dataduct +### 0.5.0 +- Cleanup commands being passed in QA steps +- Add support for postgres +- Status bar for uploading large files +- Minor bug fixes + ### 0.4.0 - Support for starting database shell from dataduct cli - Fix bug in logger configuration diff --git a/dataduct/__init__.py b/dataduct/__init__.py index e6c8d30..7954e07 100644 --- a/dataduct/__init__.py +++ b/dataduct/__init__.py @@ -1,4 +1,4 @@ """Welcome to DataDuct """ -__version__ = '0.4.0' +__version__ = '0.5.0' __import__('pkg_resources').declare_namespace(__name__) diff --git a/docs/conf.py b/docs/conf.py index c0c7cf3..6f24b1d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys -version_string = '0.3.0' +version_string = '0.5.0' # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True'