From 99d5f4a92a703e9900ec4d6d830a649070e7c74d Mon Sep 17 00:00:00 2001 From: robin-173 <56123957+robin-173@users.noreply.github.com> Date: Wed, 9 Dec 2020 11:30:07 +0000 Subject: [PATCH] Prepared for v0.5 release (#95) - Prepared for v0.5 release --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- sayn/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f070d3..b74cd1dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## Next +## [0.5.0] - 2020-12-09 + +### Changed + +- Changed concept of dags to tasks +- Added automated detection of task files in tasks folder +- Added option to change database destination + +### Fixed + +- Fixed issues with primary key DDLs + ## [0.4.2] - 2020-11-11 ### Changed diff --git a/pyproject.toml b/pyproject.toml index ff608931..eef7f038 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sayn" -version = "0.4.2" +version = "0.5.0" description = "Data-modelling and processing framework for automating Python and SQL tasks" authors = ["Robin Watteaux ", "Adrian Macias "] license = "Apache-2.0" diff --git a/sayn/__init__.py b/sayn/__init__.py index 7104538a..222738c7 100644 --- a/sayn/__init__.py +++ b/sayn/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.4.2" +__version__ = "0.5.0" from .tasks import PythonTask