Skip to content

Commit

Permalink
Update version and project name in files
Browse files Browse the repository at this point in the history
  • Loading branch information
CircleCI committed Apr 13, 2020
1 parent e1431cf commit b85c7a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/troubleshooting/sanity-checks.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ pip install --upgrade streamlit
$ streamlit version
```

...and then verify that the version number printed is `0.57.3`.
...and then verify that the version number printed is `0.57.4.dev20200412`.

**Try reproducing the issue now.** If not fixed, keep reading on.

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamlit-browser",
"version": "0.57.3",
"version": "0.57.4",
"private": true,
"homepage": ".",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
from pipenv.utils import convert_deps_to_pip
from setuptools.command.install import install

VERSION = "0.57.3" # PEP-440
VERSION = "0.57.4.dev20200412" # PEP-440

NAME = "streamlit"
NAME = "streamlit-nightly"

pipfile = Project(chdir=False).parsed_pipfile

Expand Down
2 changes: 1 addition & 1 deletion lib/streamlit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

# This used to be pkg_resources.require('streamlit') but it would cause
# pex files to fail. See #394 for more details.
__version__ = _pkg_resources.get_distribution("streamlit").version
__version__ = _pkg_resources.get_distribution("streamlit-nightly").version

# Deterministic Unique Streamlit User ID
if (
Expand Down
2 changes: 1 addition & 1 deletion lib/streamlit/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _get_installed_streamlit_version():
The version string specified in setup.py.
"""
version_str = pkg_resources.get_distribution("streamlit").version
version_str = pkg_resources.get_distribution("streamlit-nightly").version
return _version_str_to_obj(version_str)


Expand Down

0 comments on commit b85c7a6

Please sign in to comment.