diff --git a/Makefile b/Makefile index 42aefa1766..0f7f8f2184 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,7 @@ publish-website: ## Publish website .PHONY: tag tag: ## Bump version and tag cd py && $(MAKE) tag + cd r && $(MAKE) tag git add . git commit -m "chore: Release v$(VERSION)" git tag v$(VERSION) diff --git a/py/h2o_wave/__init__.py b/py/h2o_wave/__init__.py index c585712e69..b178ebfed7 100644 --- a/py/h2o_wave/__init__.py +++ b/py/h2o_wave/__init__.py @@ -36,7 +36,7 @@ from .types import * from .test import cypress, Cypress -__version__ = '0.14.0' +__version__ = '0.14.1' __author__ = 'Prithvi Prabhu' __pdoc__ = { diff --git a/py/setup.py b/py/setup.py index abbbb0df98..981ea6138d 100644 --- a/py/setup.py +++ b/py/setup.py @@ -22,7 +22,7 @@ setuptools.setup( name='h2o_wave', - version='0.14.0', + version='0.14.1', author='Prithvi Prabhu', author_email='prithvi@h2o.ai', description='Python driver for H2O Wave Realtime Apps', diff --git a/r/DESCRIPTION b/r/DESCRIPTION index cd7c0a90c0..8374e91198 100644 --- a/r/DESCRIPTION +++ b/r/DESCRIPTION @@ -1,6 +1,6 @@ Package: h2owave Title: R Driver for H2O Wave Realtime Apps Framework -Version: 0.0.14 +Version: 0.14.1 Date: 2021-03-24 Authors@R:c( person(given = "Ashrith", diff --git a/r/Makefile b/r/Makefile index c76d828bfd..d51712271d 100644 --- a/r/Makefile +++ b/r/Makefile @@ -29,6 +29,10 @@ install: uninstall: $(PKG_NAME)_$(PKG_VERSION).tar.gz R CMD REMOVE $(PKG_NAME) +.PHONY: tag +tag: # Bump version + sed -i -r -e "s/Version.+/Version: $(VERSION)/" DESCRIPTION + clean: -rm -f $(PKG_NAME)_*.tar.gz -rm -r -f $(PKG_NAME).Rcheck