-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4cfd80
commit e13e7a2
Showing
2 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Maintainer Publishing Steps | ||
1. Squash and merge PR after unit tests pass and approvals then delete the branch. | ||
2. Using an IDE pull in head of remote master branch to local. | ||
3. Increment version stored in [`aws_okta_processor/__init__.py`](aws_okta_processor/__init__.py). Use the latest semantic versioning standard found [here](https://semver.org/) as a guide. | ||
4. Commit version change to local master branch then push to remote with `git push origin master`. | ||
5. Create a tag matching current version and annotate with attributed changes: | ||
``` | ||
git tag -a v<VERSION> | ||
- @person did x y z | ||
``` | ||
6. Push tag to remote with `git push origin v<VERSION>`. |
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__ = '1.7.0' | ||
__version__ = '1.7.1' |