diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b92a82..5d6171d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [1.3.4] - 2019-09-11 + + - FileResult now accepts extra arguments for pandas io methods + - Allow specifying plain sql queries instead of files + ## [1.3.3] - 2019-08-16 - RTBHouse report now uses API instead of sdk diff --git a/docs/conf.py b/docs/conf.py index 24fd443..3646c29 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = u'' # The full version, including alpha/beta/rc tags -release = u'1.3.3' +release = u'1.3.4' # -- General configuration --------------------------------------------------- diff --git a/laika/__init__.py b/laika/__init__.py index 12d6159..6aa9b40 100644 --- a/laika/__init__.py +++ b/laika/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.3.3' +__version__ = '1.3.4' from laika.reports import Config, Runner