From d1bce616bb74b1829fa2342fd99ebd784aa3810e Mon Sep 17 00:00:00 2001 From: jarulraj Date: Mon, 3 Apr 2023 01:56:54 -0400 Subject: [PATCH] [RELEASE]: v0.1.5 --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++---- eva/version.py | 2 +- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b020e59..79f7d3551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,56 @@ -x# Changelog +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### [Breaking Changes] ### [Added] +### [Changed] +### [Deprecated] +### [Removed] -* PR #580: Added features to load videos from S3. -* PR #568: feat: added support for INSERT and DELETE operators for structured data +## [0.1.5] - 2023-04-03 +### [Added] + +* PR #623: feat: Adding support for AudioStorageEngine +* PR #550: feat: support key-value cache for function expressions +* PR #604: feat: LIKE operator +* PR #622: feat: sqlalchemy tests +* PR #618: feat: Predicate UDF Reordering Optimization +* PR #617: feat: Add UDF Cost Catalog +* PR #616: feat: Add support for iframe based video sampling +* PR #606: feat: Add metadata to UDFs in catalog +* PR #589: feat: Fuzzy Join support in EVA +* PR #601: feat: Decorators for UDF +* PR #619: chore: reducing coverage loss +* PR #595: doc: Adding CatalogManager, INSERT and DELETE documentation +* PR #605: feat: verify udf consistency by matching the file checksum +* PR #600: feat: allow UDF's to be created with any name +* PR #583: feat: Add symlinks to data files instead of copying +* PR #580: feat: enable loading videos from s3 +* PR #587: feat: Delete and Insert operators for structured data +* PR #582: server: asyncio refactoring +* PR #579: fix: directory of eva-arch +* PR #578: docs: update project name ### [Changed] * PR #581: fix: debugging issuse in yolov5 +* PR #625: Bug: Reader fixes +* PR #611: fix: insert and delete executor +* PR #615: fix: dropbox links fixed +* PR #614: Fix: updated dropbox links +* PR #602: fix: EVA on Ray bugs +* PR #596: fix: Raise Error on Missing Files during Load +* PR #593: fix: Windows path error in S3 testcases +* PR #584: Rename Array_Count to ArrayCount +* PR #581: fix: debugging issue in yolov5 ### [Deprecated] + +* PR #609: refactor: removing upload code and bug fixes + ### [Removed] ## [0.1.4] - 2023-01-28 diff --git a/eva/version.py b/eva/version.py index ab18f7741..f5da7f5ba 100644 --- a/eva/version.py +++ b/eva/version.py @@ -15,7 +15,7 @@ _MAJOR = "0" _MINOR = "1" -_REVISION = "5+dev" +_REVISION = "5" VERSION_SHORT = f"{_MAJOR}.{_MINOR}" VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"