Skip to content

Commit

Permalink
Bump v0.3.5+dev (#1060)
Browse files Browse the repository at this point in the history
Co-authored-by: Jiashen Cao <[email protected]>
  • Loading branch information
gaurav274 and jiashenC authored Sep 7, 2023
1 parent b08a27a commit c9ae498
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### [Deprecated]
### [Removed]

## [0.3.4] - 2023-09-06

* PR #1057: fix: staging build fix
* PR #1056: fix: update notebook outputs
* PR #1053: docs: AI powered join
* PR #1054: fix: lint for notebooks
* PR #1051: fix: create function forecast due to incorrect merging
* PR #1047: fix: update udf to function in notebooks and docs
* PR #1046: fix: add missing needed file
* PR #1043: Hot fix forecasting
* PR #1026: Removing quotes from udf_metadata_key
* PR #969: Forecasting in EVA
* PR #1034: feat: UDF migrates to Function
* PR #1035: Fix all doc issues
* PR #1029: Fix the link in new-data-source.rst
* PR #1023: Feat : Sqlite Database Handler
* PR #1019: feat: add CI for MySQL
* PR #1025: Add mysql as an available data source into documentation
* PR #965: msyql integration added
* PR #1018: fix: install pkg and ignore tutorials
* PR #1016: Revamp getting started.
* PR #1014: Extend the circle ci link check to include README.md
* PR #1015: Enable Coverage Check
* PR #1008: fix: CREATE TABLE persists entry in the catalog even if the query fails
* PR #1007: fix: create Table fails when projecting column from native table
* PR #1006: fix: update more verbose message for creating database
* PR #991: feat: add use case of LLM on food review running on colab
* PR #997: fix: improve error msg
* PR #996: Fix all BUILD warning and link validation in the documentation
* PR #986: docs: Update README.md
* PR #983: doc: fix nav bar

## [0.3.3] - 2023-08-29

* PR #983: doc: fix nav bar
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 = "4+dev"
_REVISION = "5+dev"

VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
2 changes: 1 addition & 1 deletion script/formatting/formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def check_file(file):
else:
# LOG.info("Default fix modified files")
MERGEBASE = subprocess.check_output(
"git merge-base origin/master HEAD",
"git merge-base origin/staging HEAD",
shell=True,
universal_newlines=True
).rstrip()
Expand Down

0 comments on commit c9ae498

Please sign in to comment.