diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a018a1c..beb24ff1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/eduNEXT/drydock/compare/v0.7.2...HEAD) +## [Unreleased](https://github.com/eduNEXT/drydock/compare/v0.7.3...HEAD) Please do not update the unreleased notes. +## [v0.7.3](https://github.com/eduNEXT/drydock/compare/v0.7.2...v0.7.3) - 2023-08-08 + +### [0.7.3](https://github.com/eduNEXT/drydock/compare/v0.7.2...v0.7.3) (2023-08-08) + +### Bug Fixes + +- set the correct path to use pvc volume ([#45](https://github.com/eduNEXT/drydock/issues/45)) ([6f9189c](https://github.com/eduNEXT/drydock/commit/6f9189c64699f9bbedbcc03d2ee2152ed58bdb2e)) + ## [v0.7.2](https://github.com/eduNEXT/drydock/compare/v0.7.1...v0.7.2) - 2023-07-14 ### [0.7.2](https://github.com/eduNEXT/drydock/compare/v0.7.1...v0.7.2) (2023-07-14) diff --git a/drydock_backups/plugin.py b/drydock_backups/plugin.py index 195c6b42..e21aba99 100644 --- a/drydock_backups/plugin.py +++ b/drydock_backups/plugin.py @@ -13,7 +13,7 @@ config = { "defaults": { "VERSION": __version__, - "IMAGE": "ednxops/shipyard-utils:v1.0.0", + "IMAGE": "ednxops/shipyard-utils:v1.1.0", "CRON_SCHEDULE": '0 2 * * *', "AWS_ACCESS_KEY": "", "AWS_SECRET_KEY": "", diff --git a/setup.cfg b/setup.cfg index 28f724db..aaaef261 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.2 +current_version = 0.7.3 commit = False tag = False diff --git a/tutor_plugin/__about__.py b/tutor_plugin/__about__.py index bc8c296f..4910b9ec 100644 --- a/tutor_plugin/__about__.py +++ b/tutor_plugin/__about__.py @@ -1 +1 @@ -__version__ = "0.7.2" +__version__ = "0.7.3"