From ba2d0cb97fdbd6567d7de61d4246e7c58222c90a Mon Sep 17 00:00:00 2001 From: Jonathan Curran Date: Tue, 10 Jul 2018 15:01:00 -0600 Subject: [PATCH] Update version to 1.0.0 (#44) --- docs/README.md | 6 +++--- rsconnect/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index 5a8f0601..d69ddc5b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -18,8 +18,8 @@ Download the `rsconnect` python package from [here](https://github.com/rstudio/rsconnect-jupyter/releases) (packaged as a [wheel](https://pythonwheels.com/) file). -We recommend working within a `virtualenv` (especially on Mac). If you -are unfamiliar, these commands create and activate a `virtualenv` +We recommend working within a `virtualenv` (especially on Mac). If you +are unfamiliar, these commands create and activate a `virtualenv` at `/my/path`: ``` @@ -32,7 +32,7 @@ source bin/activate Install the `rsconnect` package with the following command: ``` -pip install rsconnect-0.1.0-py2.py3-none-any.whl +pip install rsconnect-1.0.0-py2.py3-none-any.whl ``` Enable the `rsconnect` extension with the following commands: diff --git a/rsconnect/__init__.py b/rsconnect/__init__.py index 87aaf40f..424f0205 100644 --- a/rsconnect/__init__.py +++ b/rsconnect/__init__.py @@ -22,7 +22,7 @@ except: from .rsconnect import app_search, mk_manifest, deploy, verify_server, RSConnectException -__version__ = '0.1.0' +__version__ = '1.0.0' def _jupyter_server_extension_paths(): diff --git a/setup.py b/setup.py index 1a7fb07b..72963061 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def readme(): setup(name='rsconnect', - version='0.1.0', + version='1.0.0', description='Jupyter Notebook integration with RStudio Connect', long_description=readme(), url='http://github.com/rstudio/rsconnect-jupyter',