-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Release Action for Trusted Publisher (#342)
* Update Release Action for Trusted Publisher * Update release documentation * 0.26 Release
- Loading branch information
1 parent
b5fda71
commit eabb34a
Showing
6 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
|
||
def test_version(): | ||
assert __version__ == "0.25.0" | ||
assert __version__ == "0.26.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.25.0" | ||
__version__ = "0.26.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# How to release | ||
|
||
1. Bump version in `pyproject.toml`, `gridstatus/version.py` and `gridstatus/tests/test_version.py` | ||
1. Bump version in `pyproject.toml`, `gridstatus/version.py`, and `gridstatus/tests/test_version.py` | ||
2. Run `poetry run python ./docs/update_docs.py` to update methods in docs | ||
3. Run `make test-slow' to ensure slow test that CI doesn't check are passing | ||
3. Run `make test-slow` to ensure slow test that CI doesn't check are passing | ||
4. Update `CHANGELOG.md` to reflect changes made since the previous release and the date of the release | ||
5. Make release on GitHub and tag it with a matching version number | ||
5. Make release on GitHub and tag it with a matching version number. The tag must start with `v` and be followed by the version number. For example, `v0.1.0` | ||
a. The `release.yaml` workflow will publish the package to PyPI after the release has been published. | ||
6. Confirm package was uploaded to [PyPi](https://pypi.org/project/gridstatus/) |