@@ -41,21 +41,21 @@ dependencies are defined in `pyproject.toml`.
4141* Bump version number in ` mph/meta.py ` .
4242* Add release notes to ` docs/releases.md ` .
4343* Add dedicated commit for the version bump.
44- * Tag commit with version number, e.g. ` git tag v1.1.7 ` .
45- * Force ` stable ` branch to latest commit: ` git branch -f stable ` .
46- * Same for the current documentation branch: ` git branch -f 1.1 ` .
47- * Run code linter: ` flake8 ` .
48- * Test docs build: ` python tools/docs.py ` .
49- * Test wheel build: ` python tools/wheel.py ` .
50- * Run tests for each supported Python/OS: ` python3x tools/test.py ` .
51- * Run code coverage: ` python tools/coverage.py ` .
44+ * Tag commit with version number, e.g. ` git tag v1.2.0 `
45+ * Force ` stable ` branch to latest commit: ` git branch -f stable `
46+ * Same for the current documentation branch: ` git branch -f 1.2 `
47+ * Run code linter: ` flake8 `
48+ * Test docs build: ` python tools/docs.py `
49+ * Test wheel build: ` python tools/wheel.py `
50+ * Run tests for each supported Python/OS: ` python3x tools/test.py `
51+ * Run code coverage: ` python tools/coverage.py `
5252* Push to GitHub:
5353``` console
5454 git push origin main
5555 git push --tags
5656 git push origin stable
57- git push origin 1.1
57+ git push origin 1.2
5858```
59- * Upload coverage report: ` python tools/codecov.py ` .
59+ * Upload coverage report: ` python tools/codecov.py `
6060* Create new release on GitHub and add release notes.
61- * Publish to PyPI: ` python tools/publish.py ` .
61+ * Publish to PyPI: ` python tools/publish.py `
0 commit comments