Skip to content

Commit

Permalink
0.3.2 (#24)
Browse files Browse the repository at this point in the history
## Features
- fixes a bug where min/max aggregations were not working properly (#23)
- fixes a bug where not including the `included_columns` project var
would cause an error (#20)
  • Loading branch information
tnightengale authored Mar 23, 2023
1 parent eb5f6bf commit 41f8ab1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Include in `packages.yml`:
```yaml
packages:
- package: tnightengale/dbt_activity_schema
version: 0.3.1
version: 0.3.2
```
For latest release, see
https://github.com/tnightengale/dbt-activity-schema/releases.
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Project name.
name: 'dbt_activity_schema'
version: '0.3.1'
version: '0.3.2'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]

Expand Down
3 changes: 2 additions & 1 deletion macros/activity.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{% macro activity(
relationship,
activity_name,
included_columns=var("included_columns", var("dbt_activity_schema", {}).get("included_columns", dbt_activity_schema.columns().values())),
included_columns=var("included_columns", var("dbt_activity_schema",
{}).get("included_columns", dbt_activity_schema.columns().values() | list)),
additional_join_condition="true"
) %}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dbt-activity-schema"
version = "0.3.1"
version = "0.3.2"
description = "A dbt package to create models within the Activity Schema data model framework."
authors = ["Teghan Nightengale <[email protected]>"]
license = "GNU"
Expand Down

0 comments on commit 41f8ab1

Please sign in to comment.