From 26607be730c7d407ad8333b9b2614bf6220221d0 Mon Sep 17 00:00:00 2001 From: Jiashen Cao Date: Wed, 18 Oct 2023 21:51:10 +0000 Subject: [PATCH 1/5] [RELEASE]: 0.3.8 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5557e9fadc..f8ef0b95de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From 59f85fa81efdcdd90ba935f69614eda9813b1151 Mon Sep 17 00:00:00 2001 From: Jiashen Cao Date: Wed, 18 Oct 2023 21:51:29 +0000 Subject: [PATCH 2/5] [BUMP]: v0.3.9+dev --- evadb/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evadb/version.py b/evadb/version.py index e583161907..671c0bd8a8 100644 --- a/evadb/version.py +++ b/evadb/version.py @@ -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}" \ No newline at end of file From 62cdd1c73b2e0ba8570867218975a656486307ce Mon Sep 17 00:00:00 2001 From: Gaurav Tarlok Kakkar Date: Wed, 18 Oct 2023 21:23:49 -0400 Subject: [PATCH 3/5] minor fixes --- docs/source/reference/ai/custom-ai-function.rst | 2 +- evadb/version.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/reference/ai/custom-ai-function.rst b/docs/source/reference/ai/custom-ai-function.rst index 71c19bb91c..68e1d64616 100644 --- a/docs/source/reference/ai/custom-ai-function.rst +++ b/docs/source/reference/ai/custom-ai-function.rst @@ -44,7 +44,7 @@ The abstract method `setup` must be implemented in your function. The setup func Any additional arguments needed for creating the function must be passed as arguments to the setup function. (Please refer to the `ChatGPT `__ function example). -The additional arguments are passed with the CREATE command. Please refer to `CREATE `_ command documentation. +The additional arguments are passed with the CREATE command. Please refer to `CREATE `_ command documentation. The custom setup operations for the function can be written inside the function in the child class. If there is no need for any custom logic, then you can just simply write "pass" in the function definition. diff --git a/evadb/version.py b/evadb/version.py index 671c0bd8a8..6c2d69961c 100644 --- a/evadb/version.py +++ b/evadb/version.py @@ -3,4 +3,5 @@ _REVISION = "9+dev" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" -VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}" \ No newline at end of file +VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}" + From 438f2ce7eee9ab2595d7d5b104b155c9c61ae803 Mon Sep 17 00:00:00 2001 From: Gaurav Tarlok Kakkar Date: Wed, 18 Oct 2023 21:30:06 -0400 Subject: [PATCH 4/5] update links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05fd08772e..92b3a5e681 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Our target audience is software developers who may not necessarily have a backgr
    -
  • Connect EvaDB to your SQL and vector database systems with the `CREATE DATABASE` and `CREATE INDEX` statements.
  • +
  • Connect EvaDB to your SQL and vector database systems with the `CREATE DATABASE` and `CREATE INDEX` statements.
  • Write SQL queries with AI functions to get inference results:
    • Pick a pre-trained AI model from Hugging Face, Open AI, Ultralytics, PyTorch, and built-in AI frameworks for generative AI, NLP, and vision applications;
    • From 8840c1459f4d3e7fbb272b39d5398a9c4b7a9938 Mon Sep 17 00:00:00 2001 From: Gaurav Tarlok Kakkar Date: Thu, 19 Oct 2023 01:04:27 -0400 Subject: [PATCH 5/5] linter fix --- evadb/version.py | 1 - 1 file changed, 1 deletion(-) diff --git a/evadb/version.py b/evadb/version.py index 6c2d69961c..c6ac2fe6fb 100644 --- a/evadb/version.py +++ b/evadb/version.py @@ -4,4 +4,3 @@ VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}" -