From 1855fd8c754075d71e94a3f2d314bf36367cd839 Mon Sep 17 00:00:00 2001 From: Alvaro Lopez Garcia Date: Thu, 26 Sep 2024 18:24:59 +0200 Subject: [PATCH] chore(master): release 2.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ imgsync/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bbeaee3..2dc1f1c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "2.0.1" + ".": "2.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7827de1..6b6a6b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.1.0](https://github.com/IFCA-Advanced-Computing/imgsync/compare/v2.0.1...v2.1.0) (2024-09-26) + + +### Features + +* improve logging ([d560b8c](https://github.com/IFCA-Advanced-Computing/imgsync/commit/d560b8cd8e0dbbaf641f62b36d6f28290e1381a4)) + + +### Bug Fixes + +* return location after downloading ([22d03c3](https://github.com/IFCA-Advanced-Computing/imgsync/commit/22d03c3a44345429f84b2e7ba700d7ebaa7c54e1)) + ## [2.0.1](https://github.com/IFCA-Advanced-Computing/imgsync/compare/v2.0.0...v2.0.1) (2024-09-26) diff --git a/imgsync/__init__.py b/imgsync/__init__.py index d43e233..26c72f5 100644 --- a/imgsync/__init__.py +++ b/imgsync/__init__.py @@ -5,7 +5,7 @@ import pathlib -__version__ = "2.0.1" +__version__ = "2.1.0" def extract_version() -> str: diff --git a/pyproject.toml b/pyproject.toml index c450167..eeddab7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "imgsync" -version = "2.0.1" +version = "2.1.0" description = "imgsync will download sync images from several distribution repositories and send them to an OpenStack Image service (Glance)." readme = "README.md" license = "Apache-2.0"