Skip to content

Commit 6385c08

Browse files
authored
Bump to 1.0.1 (& update publishing.md) (#1256)
1 parent 50bbb4a commit 6385c08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/internal/publishing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ After you've submitted the PR which bumps the version and then [publish a GitHub
4040
Run the following command but replace `1.0.0` with the version that you just published:
4141

4242
```sh
43-
cd scripts/smoketest_app/ && uvx mesop==1.0.0 main.py
43+
cd scripts/smoketest_app/ && uvx --refresh mesop==1.0.0 main.py
4444
```
4545

4646
This will start the Mesop dev server and you can test that hot reload works. Double-check that the version shown is the version that you just released.
@@ -50,7 +50,7 @@ This will start the Mesop dev server and you can test that hot reload works. Dou
5050
Run the following command but replace `1.0.0` with the version that you just published:
5151

5252
```sh
53-
cd scripts/smoketest_app/ && uvx --with mesop==1.0.0 gunicorn@latest main:me
53+
cd scripts/smoketest_app/ && uvx --refresh --with mesop==1.0.0 gunicorn@latest main:me
5454
```
5555

5656
This will launch Mesop under the Gunicorn server so you can make sure it works as expected.

mesop/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the version string."""
22

3-
VERSION = "1.0.1rc1"
3+
VERSION = "1.0.1"
44

55
if __name__ == "__main__":
66
print(VERSION)

0 commit comments

Comments
 (0)