diff --git a/CHANGELOG.md b/CHANGELOG.md index 88df334..20a16fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,13 @@ instructions, because git commits are used to generate release notes: + +## v19.0.2 (2025-03-14) + +- [Bugfix] Do not add cairn-postgresql as a dependency when CAIRN_RUN_POSTGRESQL is false. (by @Danyal-Faheem) +- [Bugfix] Add missing CAIRN_POSTGRESQL_HOST and CAIRN_POSTGRESQL_PORT settings to allow usage with external postgresql dbs. (by @Danyal-Faheem) +- [Bugfix] Do not manage cairn-clickhouse permissions CAIRN_RUN_CLICKHOUSE is false. (by @Danyal-Faheem) + ## v19.0.1 (2025-03-12) diff --git a/changelog.d/20250314_131458_danyal.faheem_fix_external_postgres_dependency.md b/changelog.d/20250314_131458_danyal.faheem_fix_external_postgres_dependency.md deleted file mode 100644 index 66e5f3e..0000000 --- a/changelog.d/20250314_131458_danyal.faheem_fix_external_postgres_dependency.md +++ /dev/null @@ -1,3 +0,0 @@ -- [Bugfix] Do not add cairn-postgresql as a dependency when CAIRN_RUN_POSTGRESQL is false. (by @Danyal-Faheem) -- [Bugfix] Add missing CAIRN_POSTGRESQL_HOST and CAIRN_POSTGRESQL_PORT settings to allow usage with external postgresql dbs. (by @Danyal-Faheem) -- [Bugfix] Do not manage cairn-clickhouse permissions CAIRN_RUN_CLICKHOUSE is false. (by @Danyal-Faheem) \ No newline at end of file diff --git a/tutorcairn/__about__.py b/tutorcairn/__about__.py index 39b5f3f..14d428a 100644 --- a/tutorcairn/__about__.py +++ b/tutorcairn/__about__.py @@ -1 +1 @@ -__version__ = "19.0.1" +__version__ = "19.0.2"