Skip to content

Commit ce11781

Browse files
authored
Merge pull request #9 from swishbi/dev
Dev
2 parents f4aa06a + 1a4e924 commit ce11781

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# dbt_netsuite_source v0.2.2
2+
3+
## 🚨 Breaking Changes 🚨:
4+
[PR #9](https://github.com/swishbi/dbt_netsuite_source/pull/9) includes the following breaking changes:
5+
- Changes the default identifier for the budgets table from `budget` to `budgets`.
6+
7+
## Contributors
8+
- [phillem15](https://github.com/phillem15) ([#9](https://github.com/swishbi/dbt_netsuite_source/pull/9))
9+
110
# dbt_netsuite_source v0.2.1
211

312
## 🎉 Feature Updates 🎉

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ Include the following netsuite_source package version in your `packages.yml` fil
7676
```yaml
7777
packages:
7878
- git: "https://github.com/swishbi/dbt_netsuite_source.git"
79-
revision: 0.1.0
79+
revision: v0.X.X # See latest version in releases
8080
# use this format when accessing your repository via a github application token
8181
- git: "https://{{env_var('DBT_ENV_SECRET_GIT_CREDENTIAL')}}@github.com/swishbi/dbt_netsuite_source.git" # git HTTPS URL
82-
revision: 0.1.0
82+
revision: v0.X.X # See latest version in releases
8383
```
8484

8585
## Step 3: Define database and schema variables

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
config-version: 2
22
require-dbt-version: [">=1.3.0", "<2.0.0"]
33
name: 'netsuite_source'
4-
version: '0.1.0'
4+
version: '0.2.2'
55

66
models:
77
netsuite_source:

models/_netsuite__sources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ sources:
185185
- name: budget_categories
186186
identifier: "{{ var('netsuite_budget_category_identifier', 'budgetcategory') }}"
187187
- name: budgets
188-
identifier: "{{ var('netsuite_budget_identifier', 'budget') }}"
188+
identifier: "{{ var('netsuite_budget_identifier', 'budgets') }}"
189189
- name: budgets_machine
190190
identifier: "{{ var('netsuite_budgets_machine_identifier', 'budgetsmachine') }}"
191191

0 commit comments

Comments
 (0)