From 570e6751cbcd809a38184ef2c58452d6ff543755 Mon Sep 17 00:00:00 2001 From: Gaurav Tarlok Kakkar Date: Thu, 11 May 2023 22:29:29 -0400 Subject: [PATCH] Release v0.2.3 (#723) --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ eva/version.py | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b1bf0512..4aac704db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### [Deprecated] ### [Removed] +## [0.2.2] - 2023-05-11 +### [Added] + +* PR #708: tutorial: toxicity classifier +* PR #694: tutorials: ChatGPT + Whisper + Hugging Face tutorial notebook +* PR #690: feat: make keywords case insensitive in parser +* PR #679: feat: support for Yolov8 pipelines +* PR #676: fix: Enable image and video tables to project Identifier column +* PR #663: feat: add caching support for udfs in projection +* PR #659: feat: Add support for audio based hf models +* PR #655: feat: LLM-based remote UDFs -- support for OpenAI Chat Completion +* PR #651: tutorial: license plate detection notebook to demonstrate fuzzy join +* PR #645: feat: logical filter cache +* PR #644: chore: Add optimizer timeout +* PR #643: feat: Add audio sampling rate + +### [Changed] + +* PR #712: fix: image loading +* PR #719: fix: speed up testcases +* PR #717: ci: updates to ci pipeline +* PR #718: bug: move from yolo to HF for reuse testcases +* PR #711: docs: Update README.md / typo fix +* PR #706: bug: catalog reset +* PR #704: test: add message to help debug an issue +* PR #701: bug: modify the catalog reset method +* PR #702: fix: stop raising error if category or key missing in config. +* PR #698: docs: improve UDF creation documentation +* PR #699: chore: rename ChatGPT UDF +* PR #696: docs: updated UDF documentation based on decorators +* PR #697: misc: add github templates +* PR #695: docs: typo in executor_utils.py +* PR #691: fix: cache indices after filtering +* PR #689: style: removing gender detection nb +* PR #686: ci: reduce number of cache shards +* PR #687: docs: Add link to HuggingFace demo application -- image segmentation pipeline +* PR #684: ci: upgrades to ci pipeline +* PR #681: ci: add model cache for linux builds +* PR #678: fix: HF GPU support +* PR #675: bug: opencv now returns rgb +* PR #674: fix: ray ci fix + + ## [0.2.1] - 2023-04-25 ### [Added] diff --git a/eva/version.py b/eva/version.py index 0e8e2dbd8..287ba5092 100644 --- a/eva/version.py +++ b/eva/version.py @@ -15,7 +15,7 @@ _MAJOR = "0" _MINOR = "2" -_REVISION = "2+dev" +_REVISION = "3" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"