diff --git a/CHANGELOG.md b/CHANGELOG.md index d14b667..7298687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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 + +## [0.6.0] - 2024-02-13 ### Added * added --deduplicate/--no-deduplicate (enabled by default) flag on products-contain-component which performs additional deduplications (all deduplication steps are listed in the --help) diff --git a/griffon/__init__.py b/griffon/__init__.py index e0233c3..fb33b75 100644 --- a/griffon/__init__.py +++ b/griffon/__init__.py @@ -20,7 +20,7 @@ from .exceptions import GriffonException -__version__ = "0.5.5" +__version__ = "0.6.0" CORGI_SERVER_URL = os.getenv("CORGI_SERVER_URL") OSIDB_SERVER_URL = os.getenv("OSIDB_SERVER_URL")