Skip to content

Commit

Permalink
version bump with plublish doc
Browse files Browse the repository at this point in the history
  • Loading branch information
thoward-godaddy committed Dec 7, 2021
1 parent c4cfd80 commit e13e7a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions PUBLISHING.md
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>`.
2 changes: 1 addition & 1 deletion aws_okta_processor/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.7.0'
__version__ = '1.7.1'

0 comments on commit e13e7a2

Please sign in to comment.