From 3001da7101e64350eaa657e7e173953ea172646c Mon Sep 17 00:00:00 2001 From: Jake Beresford Date: Tue, 13 Jun 2023 15:52:31 -0400 Subject: [PATCH] Bump version and update changelog for v0.7.0 --- CHANGELOG.md | 17 +++++++++++++++++ setup.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaad590..fd41208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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.7.0] - 2023-06-13 + +### Added + +- `palm test` now supports the `--defer` option, making it easy to run the tests +for models you have changed in your current branch. + +### Changed + +- All palm dbt commands have been updated to have a consistent interface with +`palm run`. +- Short options are added to many commands to improve usability. + +### Fixed + +- `dbt seed` command uses the proper decorator to pass the env object. + ## [0.6.0] - 2023-06-02 ### Added diff --git a/setup.py b/setup.py index 856e6a2..ab36ef5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name='palm-dbt', - version='0.6.0', + version='0.7.0', description='dbt extension for Palm CLI', long_description=long_description, long_description_content_type='text/markdown',