c6af9e284a
Tests / catch-all (windows-latest) (push) Has been cancelled
Tests / jvm (macos-latest) (push) Has been cancelled
Tests / jvm (ubuntu-latest) (push) Has been cancelled
Tests / jvm (windows-latest) (push) Has been cancelled
Tests / native (macos-latest) (push) Has been cancelled
Tests / native (ubuntu-latest) (push) Has been cancelled
Tests / native (windows-latest) (push) Has been cancelled
Tests / niche (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (macos-latest) (push) Has been cancelled
Tests / other-langs (ubuntu-latest) (push) Has been cancelled
Tests / other-langs (windows-latest) (push) Has been cancelled
Tests / catch-all (macos-latest) (push) Has been cancelled
Tests / catch-all (ubuntu-latest) (push) Has been cancelled
Docs Build / build (push) Has been cancelled
Docs Build / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Build and Push Docker Images / build-and-push (push) Has been cancelled
29 lines
919 B
Markdown
29 lines
919 B
Markdown
# Developer Instructions
|
|
|
|
## Python Environment & Development Tools
|
|
|
|
See [the contributing guide](CONTRIBUTING.md) for instructions on setting up your development environment
|
|
and tools for formatting and type checking.
|
|
|
|
## Release Process
|
|
|
|
1. Ensure clean git status.
|
|
2. Set the version for release, e.g.
|
|
|
|
python scripts/bump_version.py --patch
|
|
python scripts/bump_version.py --minor
|
|
|
|
This also creates the git tag.
|
|
3. Push to GitHub:
|
|
|
|
git push
|
|
git push --tags
|
|
|
|
Important: This must push a single tag only!
|
|
Pushing the single tag triggers the `create-release` workflow for the tag, which creates a
|
|
**draft release** on GitHub.
|
|
4. Review the draft release on the
|
|
[GitHub Releases page](https://github.com/oraios/serena/releases).
|
|
When ready, publish it (click *Publish release*).
|
|
This triggers the `publish` workflow, which builds and publishes the
|
|
package to PyPI. |