bump to 0.2.0

This commit is contained in:
Will McGugan
2022-10-22 17:57:55 +01:00
parent 70460e4d3b
commit 759287b29e
3 changed files with 9 additions and 9 deletions

View File

@@ -25,13 +25,13 @@ You can install Textual via PyPI.
If you plan on developing Textual apps, then you should install `textual[dev]`. The `[dev]` part installs a few extra dependencies for development.
```
pip install "textual[dev]==0.2.0b12"
pip install "textual[dev]==0.2.0"
```
If you only plan on _running_ Textual apps, then you can drop the `[dev]` part:
```
pip install textual==0.2.0b12
pip install textual==0.2.0
```
## Demo
@@ -55,19 +55,19 @@ The Textual repository comes with a number of example apps. To try out the examp
=== "HTTPS"
```bash
git clone -b css https://github.com/Textualize/textual.git
git clone https://github.com/Textualize/textual.git
```
=== "SSH"
```bash
git clone -b css git@github.com:Textualize/textual.git
git clone git@github.com:Textualize/textual.git
```
=== "GitHub CLI"
```bash
gh repo clone -b css Textualize/textual
gh repo clone Textualize/textual
```

View File

@@ -35,19 +35,19 @@ If you want to try the finished Stopwatch app and follow along with the code, fi
=== "HTTPS"
```bash
git clone -b css https://github.com/Textualize/textual.git
git clone https://github.com/Textualize/textual.git
```
=== "SSH"
```bash
git clone -b css git@github.com:Textualize/textual.git
git clone git@github.com:Textualize/textual.git
```
=== "GitHub CLI"
```bash
gh repo clone -b css Textualize/textual
gh repo clone Textualize/textual
```

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "textual"
version = "0.2.0b12"
version = "0.2.0"
homepage = "https://github.com/Textualize/textual"
description = "Modern Text User Interface framework"
authors = ["Will McGugan <will@textualize.io>"]