Skip to content

Commit

Permalink
Up version to 0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tvst committed Jun 24, 2019
1 parent 3fd4c21 commit 2a149b4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion conda/streamlit/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "streamlit" %}
{% set version = "0.40.1" %}
{% set version = "0.41.0" %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion docker/aws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Install python dependencies
RUN pip install streamlit==0.40.1
RUN pip install streamlit==0.41.0

ENTRYPOINT ["streamlit", "run"]
2 changes: 1 addition & 1 deletion docker/aws/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.6'

services:
streamlit:
image: streamlit/streamlit:0.40.1
image: streamlit/streamlit:0.41.0
build:
context: .
dockerfile: Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docker/aws/mnist/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM streamlit/streamlit:0.40.1
FROM streamlit/streamlit:0.41.0

RUN pip install keras tensorflow

Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ pip install --upgrade streamlit
$ streamlit version
```

...and then verify that the version number printed is `0.40.1`.
...and then verify that the version number printed is `0.41.0`.

**Try reproducing the issue now.**

Expand Down
2 changes: 1 addition & 1 deletion examples/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM streamlit/streamlit:0.40.1
FROM streamlit/streamlit:0.41.0

COPY credentials.toml config.toml /root/.streamlit/
COPY *.py /examples/
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.40.1",
"version": "0.41.0",
"private": true,
"homepage": ".",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def readme():

setuptools.setup(
name='streamlit',
version='0.40.1', # PEP-440
version='0.41.0', # PEP-440
description='Streaming Data Science',
long_description=readme(),
url='https://streamlit.io',
Expand Down

0 comments on commit 2a149b4

Please sign in to comment.