Skip to content

Commit

Permalink
Bump Version to v0.3.7+dev (#1182)
Browse files Browse the repository at this point in the history
Bump Version to v0.3.7+dev

---------

Co-authored-by: Jiashen Cao <[email protected]>
  • Loading branch information
github-actions[bot] and jiashenC authored Sep 21, 2023
1 parent c51ae75 commit 13cc63b
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### [Deprecated]
### [Removed]

## [0.3.6] - 2023-09-21

* PR #1181: releass: bump a version further to skip cached wheel
* PR #1179: fix: release change log
* PR #1177: fix: release action
* PR #1176: fix: release
* PR #1174: fix: trigger build
* PR #1173: fix: release on success only and credential to pass protection rule
* PR #1172: Release v0.3.5
* PR #1169: fix: hotfix for the failing staging build
* PR #1159: Load query exception for invalid file format
* PR #1164: Fix model train with Ludwig on Colab
* PR #1155: feat: add support for enabling ORDER BY on non projected columns
* PR #1158: Adding Algolia search to Eva-DB Docs
* PR #1146: `CREATE OR REPLACE FUNCTION`
* PR #1154: feat: add github actions to sync and release wheel
* PR #1123: Updates evadb apps
* PR #1157: chore
* PR #977: chore
* PR #1137: feat: add support for if not exists in create db
* PR #1132: docs: add home sale forecast usecase into documentation
* PR #1136: feat: support order by using the projection columns
* PR #1030: Add model inference documentation
* PR #1134: ci: staging build fix
* PR #1124: fix: third-party test
* PR #1118: Add a model forecasting notebook in tutorials
* PR #1125: feat: create table in integration table from evadb select query
* PR #1122: fix: flaky ci unit tests
* PR #1113: fix: update docs and notebooks
* PR #1114: feat: Improve db integration
* PR #1108: Set the right output column type for forecast functions
* PR #1107: Added null handling and tests for case insensitive string matching
* PR #1087: Support `SELECT expr;` which does not require `FROM table`
* PR #1090: Making `Ludwig` and `HuggingFace` case insensitive
* PR #1027: Adding support for MariaDb as backend for EvaDB
* PR #1101: Fix forecasting integration test
* PR #1094: Fixes date and frequency issues in forecasting
* PR #1096: Rename l_plan and p_plan
* PR #1091: fix: evadb is now consistent with lowercase
* PR #1092: feat: Drop database
* PR #1082: feat: create index if exists
* PR #1088: fix: df merging issues when multiple predicates
* PR #1086: Update parameters documentation for forecast
* PR #1084: Fix column name related issue for Forecast functions
* PR #1073: fix: create index from single document
* PR #1080: `pandas.DataFrame.fillna` is deprecated
* PR #1060: Bump v0.3.5+dev
* PR #1062: Update UDF to function in model-forecasting.rst

## [0.3.4] - 2023-09-06

* PR #1057: fix: staging build fix
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 = "6"
_REVISION = "7+dev"

VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
2 changes: 2 additions & 0 deletions script/releasing/releaser.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,8 @@ def bump_up_version(next_version):
publish_wheels(current_version_str_without_dev)

if args.upload_assets:
# We assume that we run each command sequentially here. When a new release
# is made, the change log needs to be based on the second latest release.
release_date = get_commit_id_of_latest_release(release_index=1)
changelog = get_changelog(release_date)
upload_assets(changelog, current_version_str_without_dev)
Expand Down

0 comments on commit 13cc63b

Please sign in to comment.