From 692a4e67e0b7efb1368984d847e0160fc016eafa Mon Sep 17 00:00:00 2001 From: bcodell Date: Tue, 18 Apr 2023 21:18:42 -0400 Subject: [PATCH] 0.4.0 (#35) This PR bumps the package version to 0.4.0 to release the new convenience feature for automatically unpacking `feature_json` based on arguments passed in the `included_columns` of the `activity` macro. --- README.md | 2 +- dbt_project.yml | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a47d5e5..6be84ba 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Include in `packages.yml`: ```yaml packages: - package: tnightengale/dbt_activity_schema - version: 0.3.3 + version: 0.4.0 ``` For latest release, see https://github.com/tnightengale/dbt-activity-schema/releases. diff --git a/dbt_project.yml b/dbt_project.yml index 4452581..3817edb 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,7 +1,7 @@ # Project name. name: 'dbt_activity_schema' -version: '0.3.3' +version: '0.4.0' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] diff --git a/pyproject.toml b/pyproject.toml index a514a00..4a3b489 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "dbt-activity-schema" -version = "0.3.3" +version = "0.4.0" description = "A dbt package to create models within the Activity Schema data model framework." -authors = ["Teghan Nightengale "] +authors = ["Teghan Nightengale ", "Bryce Codell "] license = "GNU" readme = "README.md"