From b07ace274454594c831b40195f8b54d7b64800d5 Mon Sep 17 00:00:00 2001 From: Adam Ribaudo Date: Wed, 15 Mar 2023 08:52:19 -0400 Subject: [PATCH] incrementing version number in preparation for release. removing documentation in dbt_project.yml (should be in README.md) --- README.md | 2 +- dbt_project.yml | 36 +----------------------------------- 2 files changed, 2 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 295c83ce..88ba3dc1 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ To pull the latest stable release along with minor updates, add the following to ``` packages: - package: Velir/ga4 - version: [">=2.0.0", "<2.2.0"] + version: [">=3.0.0", "<3.2.0"] ``` ## Install From main branch on GitHub diff --git a/dbt_project.yml b/dbt_project.yml index c7b8ac88..b61d1fcf 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'ga4' -version: '2.0.1' +version: '3.0.0' config-version: 2 model-paths: ["models"] analysis-paths: ["analyses"] @@ -13,40 +13,6 @@ clean-targets: # directories to be removed by `dbt clean` - "target" - "dbt_packages" -# The following variables should be set in the project that loads this package. -#vars: -# project: "your_project" -# dataset: "your_dataset" -# start_date: "20210120" # Defines the earliest GA4 event _TABLE_SUFFIX to load into base events model. -# frequency: daily # daily|streaming defaults to daily. If you only use the streaming export, use this setting to only get the streaming data. - -# Query parameter exclusions -# You can remove specific query parameters from the page_location by listing them here -# query_parameter_exclusions: ["gclid","fbclid","_ga"] - -# User Properties -# User-scoped event properties can be assigned using the following variable configuration in your dbt_project.yml -# The dim_ga4__users dimension table will be updated to include the last value seen for each user -# user_properties: -# - event_parameter: "page_location" -# user_property_name: "most_recent_page_location" -# value_type: "string_value" -# - event_parameter: "another_event_param" -# user_property_name: "most_recent_param" -# value_type: "string_value" - -# Custom parameters -# custom parameters are registered by creating a var matching the event name where the custom parameter occurs -# and providing the name, matching the parameters name -# and matching the value_type to the type of column in BigQuery (string_value, int_value, float_value, double_value) -# the below example shows a page_view enhanced with the clean_event event parameter from the ga4_obfuscated_sample_ecommerce project -# page_view: -# - name: "clean_event" -# value_type: "string_value" - -# The main base events model is materialized as a partitioned, incremental table -# The staging models are materialized as views -# The dimensional models are materialized as tables models: ga4: +materialized: view