Skip to content

Commit 36f05ff

Browse files
author
CircleCI
committed
Update version and project name in files
1 parent b148d19 commit 36f05ff

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/troubleshooting/sanity-checks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pip install --upgrade streamlit
3535
streamlit version
3636
```
3737

38-
...and then verify that the version number printed is `0.82.0`.
38+
...and then verify that the version number printed is `0.83.1.dev20210621`.
3939

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

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamlit-browser",
3-
"version": "0.82.0",
3+
"version": "0.83.1",
44
"private": true,
55
"homepage": "./",
66
"scripts": {

lib/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
)
2828
sys.exit(exit_msg)
2929

30-
VERSION = "0.82.0" # PEP-440
30+
VERSION = "0.83.1.dev20210621" # PEP-440
3131

32-
NAME = "streamlit"
32+
NAME = "streamlit-nightly"
3333

3434
DESCRIPTION = "The fastest way to build data apps in Python"
3535

lib/streamlit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

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

6262
import contextlib as _contextlib
6363
import re as _re

lib/streamlit/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _get_installed_streamlit_version():
4444
The version string specified in setup.py.
4545
4646
"""
47-
version_str = pkg_resources.get_distribution("streamlit").version
47+
version_str = pkg_resources.get_distribution("streamlit-nightly").version
4848
return _version_str_to_obj(version_str)
4949

5050

0 commit comments

Comments
 (0)