You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contributing/versioning.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,10 @@ We try to follow [Semantic Versioning](https://semver.org/) as much as possible.
6
6
Version bumps
7
7
-------------
8
8
9
-
Just edit the `policy_sentry/bin/policy_sentry` file and update the `__version__` variable:
9
+
Just edit the `policy_sentry/bin/version.py` file and update the `__version__` variable:
10
10
11
11
```python
12
-
#! /usr/bin/env python
13
-
"""
14
-
policy_sentry is a tool for generating least-privilege IAM Policies.
15
-
"""
16
-
__version__='0.6.3'# EDIT THIS
12
+
__version__='0.11.3'# EDIT THIS
17
13
```
18
14
19
15
The `setup.py` file will automatically pick up the new version from that file for the package info. The `@click.version_option` decorator will also pick that up for the command line.
0 commit comments