diff --git a/.circleci/config.yml b/.circleci/config.yml index f03efee504..e85d0576d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -113,4 +113,4 @@ jobs: command: | pip install --upgrade pip pip install evadb - ### bash script/test/package.sh + bash script/test/package.sh \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 79f7d3551b..4c9c6d26df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [Deprecated] ### [Removed] +## [0.1.6] - 2023-04-05 +### [Added] + +### [Changed] + +* PR #636: fix: Timeout Error #636 +* PR #635: fix: updates to restore build +* PR #634: fix: Pandas deprecated append call +* PR #632: fix: Minor code refactor + ## [0.1.5] - 2023-04-03 ### [Added] diff --git a/eva/version.py b/eva/version.py index bee6a3de89..47f5921389 100644 --- a/eva/version.py +++ b/eva/version.py @@ -15,7 +15,7 @@ _MAJOR = "0" _MINOR = "1" -_REVISION = "6+dev" +_REVISION = "6" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"