From e77fd336601c3557712dc25d1e44125b04781d01 Mon Sep 17 00:00:00 2001 From: Szymon Bilinski Date: Wed, 4 Sep 2019 23:09:24 +0200 Subject: [PATCH] :bookmark: Bump the version to 0.3.0 Next version will be 0.3.0. Instructions for updating the version were provided in `RELEASE.md`. --- RELEASE.md | 11 +++++++++++ aws_ssh_sync/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 4f9ab59..6b556c5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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/) diff --git a/aws_ssh_sync/__init__.py b/aws_ssh_sync/__init__.py index 3e129c8..1b98ca3 100644 --- a/aws_ssh_sync/__init__.py +++ b/aws_ssh_sync/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = "0.2.0" +__version__ = "0.3.0"