From a9ab91ab3cae95cc8c3793afe95fcda63d12bf94 Mon Sep 17 00:00:00 2001 From: Prithvi Prabhu Date: Sun, 12 Jul 2020 16:14:41 -0700 Subject: [PATCH] Release 0.0.7 --- py/README.rst | 23 +++++++++++++++++++++-- py/examples/requirements.txt | 2 +- py/setup.py | 2 +- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/py/README.rst b/py/README.rst index a4a7303fed..fa7ca05599 100644 --- a/py/README.rst +++ b/py/README.rst @@ -45,7 +45,7 @@ Hello world ) # Save the page - page.sync() + page.save() Run ``hello.py``: @@ -67,6 +67,25 @@ Links Change Log --------------- +* v0.0.7 + * Added + * Download API: ``q.download()``. + * Vega-lite support: ``ui.vega_card()``. + * Context menu support to all cards. + * ``refresh`` attribute on ``meta_card`` allows static pages to stop receiving live updates. + * Passing ``-debug`` when starting server displays site stats at ``/_d/site``. + * Drag and drop support for file upload component. + * Template expression support for markdown cards. + * All APIs and examples documented. + * All 110 examples now ship with the Sphinx documentation. + * Documentation now ships with release download. + * Changed + * API consistency: ``ui.vis()`` renamed to ``ui.plot()``. + * All stats cards now have descriptive names. + * API consistency: ``ui.mark.mark`` renamed to ``ui.mark.type``. + * API consistency: ``page.sync()`` and ``page.push()`` renamed to ``page.save()``. + * Removed + * ``ui.dashboard_card()`` and ``ui.notebook_card()``. * v0.0.6 * Added * Log network traffic when logging is set to debug mode. @@ -75,7 +94,7 @@ Change Log * Toolbar component. * Tabs component. * Nav component. - * Upload API: ``q.upload()`` + * Upload API: ``q.upload()``. * Changed * ``q.session`` renamed to ``q.user`` * v0.0.5 diff --git a/py/examples/requirements.txt b/py/examples/requirements.txt index 3759faa8f0..0cbfb1f6d2 100644 --- a/py/examples/requirements.txt +++ b/py/examples/requirements.txt @@ -1,3 +1,3 @@ pygments Faker -telesync==0.0.6 +telesync==0.0.7 diff --git a/py/setup.py b/py/setup.py index 1e89c17aaa..8f526da43b 100644 --- a/py/setup.py +++ b/py/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='telesync', - version='0.0.6', + version='0.0.7', author='Prithvi Prabhu', author_email='prithvi@h2o.ai', description='Python driver for H2O Q / Telesync Realtime Apps',