Skip to content

Commit 374ec16

Browse files
Release: v0.12.1
1 parent fdc0e38 commit 374ec16

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

setup.py

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

220220
setup(
221221
name="diffusers",
222-
version="0.12.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)
222+
version="0.12.1", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
223223
description="Diffusers",
224224
long_description=open("README.md", "r", encoding="utf-8").read(),
225225
long_description_content_type="text/markdown",

src/diffusers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.12.0"
1+
__version__ = "0.12.1"
22

33
from .configuration_utils import ConfigMixin
44
from .utils import (

utils/release.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ def pre_release_work(patch=False):
122122

123123
print(f"Updating version to {version}.")
124124
global_version_update(version, patch=patch)
125+
126+
125127
# if not patch:
126128
# print("Cleaning main README, don't forget to run `make fix-copies`.")
127129
# clean_main_ref_in_model_list()
@@ -141,6 +143,8 @@ def post_release_work():
141143

142144
print(f"Updating version to {version}.")
143145
global_version_update(version)
146+
147+
144148
# print("Cleaning main README, don't forget to run `make fix-copies`.")
145149
# clean_main_ref_in_model_list()
146150

0 commit comments

Comments
 (0)