Skip to content

Commit

Permalink
Release 0.6.7 (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
iadrich authored Sep 20, 2022
1 parent 46b8807 commit 7029a31
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## [0.6.7] - 2022-09-20

### Changed

- Drop support for Python 3.7
- Upgrades numpy version
- Improved messaging upon load_data errors
- Removed Jinja caching to allow more code reusability

### Fixed

- CLI command status code changed to error when tasks fail
- Fixed error in src or out to allow for missing schema

## [0.6.6] - 2022-09-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sayn"
version = "0.6.6"
version = "0.6.7"
description = "Data-modelling and processing framework for automating Python and SQL tasks"
authors = ["Robin Watteaux <[email protected]>", "Adrian Macias <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sayn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# except:
# pass

__version__ = "0.6.6"
__version__ = "0.6.7"


from .tasks.python import PythonTask, task

0 comments on commit 7029a31

Please sign in to comment.