From 3ffe9827449c7c8658aec90ada8c8197017f87b1 Mon Sep 17 00:00:00 2001 From: Jake Beresford Date: Mon, 20 Nov 2023 10:33:54 -0500 Subject: [PATCH] Prepare for release: bump version and update changleog --- CHANGELOG.md | 15 +++++++++++++++ setup.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd41208..6fa7896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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). +## [0.8.0] - 2023-11-20 + +### Added + +- dbt version detection: palm can now detect the version of dbt used in a project + and will add the version to the plugin config. This can then be used to support + changes between dbt versions. +- support for dbt's yaml selectors via the `--selector` option on relevant commands. + +### Changed + +- Requires palm v2.6.0 or higher +- env vars are updated for projects running dbt v1.5.0 and later. This resolves + deprecation warnings for people using more recent versions of dbt. + ## [0.7.0] - 2023-06-13 ### Added diff --git a/setup.py b/setup.py index ab36ef5..34bce03 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name='palm-dbt', - version='0.7.0', + version='0.8.0', description='dbt extension for Palm CLI', long_description=long_description, long_description_content_type='text/markdown',