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 all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Our target audience is software developers who may not necessarily have a backgr

<details>
<ul>
<li>Connect EvaDB to your SQL and vector database systems with the <a href="https://evadb.readthedocs.io/en/stable/source/reference/databases/postgres.html">`CREATE DATABASE`</a> and <a href="https://evadb.readthedocs.io/en/stable/source/reference/evaql/create.html#create-index">`CREATE INDEX`</a> statements.</li>
<li>Connect EvaDB to your SQL and vector database systems with the <a href="https://evadb.readthedocs.io/en/stable/source/reference/databases/postgres.html">`CREATE DATABASE`</a> and <a href="https://evadb.readthedocs.io/en/stable/source/reference/evaql/create_index.html">`CREATE INDEX`</a> statements.</li>
<li>Write SQL queries with AI functions to get inference results:</li>
<ul>
<li>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;</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/ai/custom-ai-function.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/georgia-tech-db/evadb/blob/master/evadb/functions/chatgpt.py>`__ function example).

The additional arguments are passed with the CREATE command. Please refer to `CREATE <https://evadb.readthedocs.io/en/stable/source/reference/evaql/create.html#create-function>`_ command documentation.
The additional arguments are passed with the CREATE command. Please refer to `CREATE <https://evadb.readthedocs.io/en/stable/source/reference/evaql/create_function.html>`_ 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.

Expand Down
2 changes: 1 addition & 1 deletion 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}"