Skip to content

Commit 802ce9e

Browse files
Update working version. Update docs for creating a release.
1 parent 3f9944d commit 802ce9e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/source/contributors_guide/release_notes.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Creating a release is a simple process that involves a few steps:
1818
#. Release title should be ``Judge0 Python SDK vX.Y.Z``.
1919
#. Release notes should include a changes from the previous release to the newest release.
2020
#. Use the `template <https://github.com/judge0/judge0-python/blob/master/RELEASE_NOTES_TEMPLATE.md>`_ from the repo to organize the changes.
21+
#. Click the `Generate release notes` button and use only `Full Changelog` section.
2122
#. Create the release. ("Set as a pre-release" should NOT be checked.)
2223
#. **Release on PyPI**:
2324
#. Use the `GitHub Actions workflow <https://github.com/judge0/judge0-python/actions/workflows/publish.yml>`_ to create a release on PyPI.
@@ -29,4 +30,4 @@ that updates the working version in ``judge0/__init__.py`` and ``judge0/pyproje
2930
to the minor version. Merge the pull request and you're done! For example, if the
3031
new release was ``1.2.2``, the working version should be updated to ``1.3.0.dev0``.
3132

32-
You've successfully created a release! Congratulations! 🎉
33+
You've successfully created a release! Congratulations! 🎉

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "judge0"
3-
version = "0.0.4"
3+
version = "0.0.5.dev0"
44
description = "The official Python SDK for Judge0."
55
readme = "README.md"
66
requires-python = ">=3.9"

src/judge0/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from .retry import MaxRetries, MaxWaitTime, RegularPeriodRetry
3030
from .submission import Submission
3131

32-
__version__ = "0.0.4"
32+
__version__ = "0.0.5.dev0"
3333

3434
__all__ = [
3535
"ATD",

0 commit comments

Comments
 (0)