Skip to content

Commit

Permalink
chore: Release v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lo5 committed Apr 30, 2021
1 parent e692969 commit e9ca05e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
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.14.0'
__version__ = '0.14.1'
__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.14.0',
version='0.14.1',
author='Prithvi Prabhu',
author_email='[email protected]',
description='Python driver for H2O Wave Realtime Apps',
Expand Down
2 changes: 1 addition & 1 deletion r/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions r/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e9ca05e

Please sign in to comment.