Skip to content

Commit 23a71cf

Browse files
Release: v0.0.2
1 parent 3e80167 commit 23a71cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
3. Unpin specific versions from setup.py that use a git install.
2929
3030
4. Checkout the release branch (v<RELEASE>-release, for example v4.19-release), and commit these changes with the
31-
message: "Release: <VERSION>" and push.
31+
message: "Release: <RELEASE>" and push.
3232
3333
5. Wait for the tests on main to be completed and be green (otherwise revert and fix bugs)
3434
35-
6. Add a tag in git to mark the release: "git tag v<VERSION> -m 'Adds tag v<VERSION> for pypi' "
35+
6. Add a tag in git to mark the release: "git tag v<RELEASE> -m 'Adds tag v<RELEASE> for pypi' "
3636
Push the tag to git: git push --tags origin v<RELEASE>-release
3737
3838
7. Build both the sources and the wheel. Do not change anything in setup.py between
@@ -189,7 +189,7 @@ def run(self):
189189

190190
setup(
191191
name="diffusers",
192-
version="0.0.1",
192+
version="0.0.2",
193193
description="Diffusers",
194194
long_description=open("README.md", "r", encoding="utf-8").read(),
195195
long_description_content_type="text/markdown",
@@ -222,8 +222,8 @@ def run(self):
222222

223223
# Release checklist
224224
# 1. Change the version in __init__.py and setup.py.
225-
# 2. Commit these changes with the message: "Release: VERSION"
226-
# 3. Add a tag in git to mark the release: "git tag VERSION -m 'Adds tag VERSION for pypi' "
225+
# 2. Commit these changes with the message: "Release: Release"
226+
# 3. Add a tag in git to mark the release: "git tag RELEASE -m 'Adds tag RELEASE for pypi' "
227227
# Push the tag to git: git push --tags origin main
228228
# 4. Run the following commands in the top-level directory:
229229
# python setup.py bdist_wheel

0 commit comments

Comments
 (0)