Skip to content

Commit

Permalink
🔖 Bump the version to 0.3.0
Browse files Browse the repository at this point in the history
Next version will be 0.3.0. Instructions for updating the version
were provided in `RELEASE.md`.
  • Loading branch information
sjednac committed Sep 4, 2019
1 parent 265a9cf commit e77fd33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions RELEASE.md
Expand Up @@ -31,6 +31,17 @@ To remove old build artifacts:
pipenv run ./setup.py clean --all
```

## Update the version

1. Create a tag for the current version:

```bash
git tag `python -m aws_ssh_sync.main -v`
git push --tags
```

2. Bump the `__version__` in the main [module](aws_ssh_sync/__init__.py)

## References

* [Packaging Python Projects](https://packaging.python.org/tutorials/packaging-projects/)
2 changes: 1 addition & 1 deletion aws_ssh_sync/__init__.py
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit e77fd33

Please sign in to comment.