From 2cbc5aa6fa06744dba1450097ea84bdd16139108 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Fri, 6 Dec 2019 07:36:30 +0100 Subject: [PATCH] bump version --- docs/conf.py | 3 +-- extras/release.md | 7 ++++--- src/setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c0a9506..669f6f1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,8 +22,7 @@ copyright = '2019, Zetta.IO Technology AS' author = 'Zetta.IO Technology AS' # The full version, including alpha/beta/rc tags -release = '0.3.1' - +release = '0.3.2' # -- General configuration --------------------------------------------------- diff --git a/extras/release.md b/extras/release.md index 602c929..3540a93 100644 --- a/extras/release.md +++ b/extras/release.md @@ -2,6 +2,7 @@ - Update version in `setup.py` - Update version in `docs/conf.py` +- Update version in `restic_compose_backup/__init__.py` - Build and tag image - push: `docker push zettaio/restic-compose-backup:` - Ensure RTD has new docs published @@ -12,9 +13,9 @@ When releasing a bugfix version we need to update the main image as well. ```bash -docker build . --tag zettaio/restic-compose-backup:0.3 -docker build . --tag zettaio/restic-compose-backup:0.3.1 +docker build src --tag zettaio/restic-compose-backup:0.3 +docker build src --tag zettaio/restic-compose-backup:0.3.2 docker push zettaio/restic-compose-backup:0.3 -docker push zettaio/restic-compose-backup:0.3.1 +docker push zettaio/restic-compose-backup:0.3.2 ``` diff --git a/src/setup.py b/src/setup.py index 2a70752..7535d2e 100644 --- a/src/setup.py +++ b/src/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_namespace_packages setup( name="restic-compose-backup", url="https://github.com/ZettaIO/restic-compose-backup", - version="0.3.1", + version="0.3.2", author="Einar Forselv", author_email="eforselv@gmail.com", packages=find_namespace_packages(include=['restic_compose_backup']),