File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
docs/source/contributors_guide Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Creating a release is a simple process that involves a few steps:
18
18
#. Release title should be ``Judge0 Python SDK vX.Y.Z ``.
19
19
#. Release notes should include a changes from the previous release to the newest release.
20
20
#. 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.
21
22
#. Create the release. ("Set as a pre-release" should NOT be checked.)
22
23
#. **Release on PyPI **:
23
24
#. 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
29
30
to the minor version. Merge the pull request and you're done! For example, if the
30
31
new release was ``1.2.2 ``, the working version should be updated to ``1.3.0.dev0 ``.
31
32
32
- You've successfully created a release! Congratulations! 🎉
33
+ You've successfully created a release! Congratulations! 🎉
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " judge0"
3
- version = " 0.0.4 "
3
+ version = " 0.0.5.dev0 "
4
4
description = " The official Python SDK for Judge0."
5
5
readme = " README.md"
6
6
requires-python = " >=3.9"
Original file line number Diff line number Diff line change 29
29
from .retry import MaxRetries , MaxWaitTime , RegularPeriodRetry
30
30
from .submission import Submission
31
31
32
- __version__ = "0.0.4 "
32
+ __version__ = "0.0.5.dev0 "
33
33
34
34
__all__ = [
35
35
"ATD" ,
You can’t perform that action at this time.
0 commit comments