Skip to content

Commit

Permalink
Bump v0.2.11+dev (#856)
Browse files Browse the repository at this point in the history
πŸ‘‹ Thanks for submitting a Pull Request to EvaDB!

πŸ™Œ We want to make contributing to EvaDB as easy and transparent as
possible. Here are a few tips to get you started:

- πŸ” Search existing EvaDB
[PRs](https://github.com/georgia-tech-db/eva/pulls) to see if a similar
PR already exists.
- πŸ”— Link this PR to a EvaDB
[issue](https://github.com/georgia-tech-db/eva/issues) to help us
understand what bug fix or feature is being implemented.
- πŸ“ˆ Provide before and after profiling results to help us quantify the
improvement your PR provides (if applicable).

πŸ‘‰ Please see our βœ… [Contributing
Guide](https://evadb.readthedocs.io/en/stable/source/contribute/index.html)
for more details.
  • Loading branch information
jarulraj authored Jun 11, 2023
1 parent 83d3f26 commit 3699e45
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
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 = "2"
_REVISION = "10"
_REVISION = "11+dev"

VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
18 changes: 0 additions & 18 deletions script/releasing/releaser.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,15 +241,6 @@ def upload_assets(changelog, tag):
release_name = tag_name
release_message = f'{tag_name}\n\n {changelog}'

# Publish the release
release = repo.create_git_release(
tag=tag_name,
name=release_name,
message=release_message,
draft=False,
prerelease=False
)

# Retrieve the release by tag name
release = repo.get_release(tag_name)

Expand Down Expand Up @@ -422,15 +413,6 @@ def bump_up_version(next_version):
changelog = get_changelog(release_date)
print(changelog)

# UPDATE CHANGELOG
append_changelog(changelog, current_version_str_without_dev)

# RELEASE VERSION
release_version(current_version_str_without_dev)

# PUBLISH WHEELS ON PYPI
publish_wheels(current_version_str_without_dev)

# UPLOAD ASSETS ON GITHUB
upload_assets(changelog, current_version_str_without_dev)

Expand Down

0 comments on commit 3699e45

Please sign in to comment.