Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Version to v0.3.9+dev #1304

Merged
merged 5 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### [Deprecated]
### [Removed]

## [0.3.8] - 2023-10-18

* PR #1303: v0.3.8 - new release
* PR #1302: Reenable batch for release
* PR #1301: Add Documentation for UDF Unit Testing and Mocking
* PR #1232: Starting the change for XGBoost integration into EVADb.
* PR #1294: fix: improve testcase
* PR #1293: fix: make the table/function catalog insert operation atomic
* PR #1295: feat: add support for show databases
* PR #1296: feat: function_metadata supports boolean and float
* PR #1290: fix: text_summarization uses drop udf
* PR #1240: Add stable diffusion integration
* PR #1285: Update custom-ai-function.rst
* PR #1234: Added basic functionalities of REST apis
* PR #1281: Clickhouse integration
* PR #1273: Update custom-ai-function.rst
* PR #1274: Fix Notebook and Ray testcases at staging
* PR #1264: SHOW command for retrieveing configurations
* PR #1270: fix: Catalog init introduces significant overhead
* PR #1267: Improve the error message when there is a typo in the column name in the query.
* PR #1261: Remove dimensions from `TEXT` and `FLOAT`
* PR #1256: Remove table names from column names for `df
* PR #1253: Collection of fixes for the staging branch
* PR #1246: feat: insertion update index
* PR #1245: Documentation on vector stores + vector benchmark
* PR #1244: feat: create index from projection
* PR #1233: GitHub Data Source Integration
* PR #1115: Add support for Neuralforecast
* PR #1241: Bump Version to v0.3.8+dev
* PR #1239: release 0.3.7

## [0.3.7] - 2023-09-30

* PR #1239: release 0.3.7
Expand Down
4 changes: 2 additions & 2 deletions evadb/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "0"
_MINOR = "3"
_REVISION = "8"
_REVISION = "9+dev"

VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"