Skip to content

Commit 3f55d13

Browse files
committed
Release: 0.3.0
1 parent 195ebe5 commit 3f55d13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ More precisely, 🤗 Diffusers offers:
3030
**With `pip`**
3131

3232
```bash
33-
pip install --upgrade diffusers # should install diffusers 0.2.4
33+
pip install --upgrade diffusers
3434
```
3535

3636
**With `conda`**

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def run(self):
186186

187187
setup(
188188
name="diffusers",
189-
version="0.3.0.dev0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
189+
version="0.3.0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
190190
description="Diffusers",
191191
long_description=open("README.md", "r", encoding="utf-8").read(),
192192
long_description_content_type="text/markdown",

src/diffusers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
)
88

99

10-
__version__ = "0.3.0.dev0"
10+
__version__ = "0.3.0"
1111

1212
from .configuration_utils import ConfigMixin
1313
from .modeling_utils import ModelMixin

0 commit comments

Comments
 (0)