Skip to content

Commit

Permalink
chore: Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lo5 committed Apr 28, 2021
1 parent 613f025 commit 174d805
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ publish-website: ## Publish website
.PHONY: tag
tag: ## Bump version and tag
cd py && $(MAKE) tag
git add .
git commit -m "chore: Release v$(VERSION)"
git tag v$(VERSION)
git push origin --tags
# git push origin --tags

help: ## List all make tasks
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
2 changes: 1 addition & 1 deletion py/examples/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ matplotlib
plotly
altair
vega-datasets
h2o_wave==0.13.0
h2o_wave==0.14.0
2 changes: 1 addition & 1 deletion py/h2o_wave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .types import *
from .test import cypress, Cypress

__version__ = '0.13.0'
__version__ = '0.14.0'
__author__ = 'Prithvi Prabhu'

__pdoc__ = {
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setuptools.setup(
name='h2o_wave',
version='0.13.0',
version='0.14.0',
author='Prithvi Prabhu',
author_email='[email protected]',
description='Python driver for H2O Wave Realtime Apps',
Expand Down

0 comments on commit 174d805

Please sign in to comment.