Skip to content

Commit

Permalink
incrementing version number in preparation for release. removing docu…
Browse files Browse the repository at this point in the history
…mentation in dbt_project.yml (should be in README.md)
  • Loading branch information
adamribaudo-velir committed Mar 15, 2023
1 parent 39bd7de commit b07ace2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
36 changes: 1 addition & 35 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'ga4'
version: '2.0.1'
version: '3.0.0'
config-version: 2
model-paths: ["models"]
analysis-paths: ["analyses"]
Expand All @@ -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
Expand Down

0 comments on commit b07ace2

Please sign in to comment.