diff --git a/docs/data-tests/dbt/upgrade-package.mdx b/docs/data-tests/dbt/upgrade-package.mdx index 4eb27a332..df536b379 100644 --- a/docs/data-tests/dbt/upgrade-package.mdx +++ b/docs/data-tests/dbt/upgrade-package.mdx @@ -12,7 +12,7 @@ On new releases, you will need to upgrade the Elementary dbt package. ```yml packages.yml packages: - package: elementary-data/elementary - version: 0.22.0 + version: 0.23.0 ``` 2. Run the command: @@ -21,7 +21,7 @@ packages: dbt deps ``` -3. When there's a change in the structure of the Elementary tables, the minor version is raised. If you're updating a minor version (for example 0.21.X -> 0.22.X), run this command to rebuild the Elementary tables: +3. When there's a change in the structure of the Elementary tables, the minor version is raised. If you're updating a minor version (for example 0.22.X -> 0.23.X), run this command to rebuild the Elementary tables: ```shell dbt run --select elementary diff --git a/docs/snippets/quickstart-package-install.mdx b/docs/snippets/quickstart-package-install.mdx index 2d4abbd6d..b07da4949 100644 --- a/docs/snippets/quickstart-package-install.mdx +++ b/docs/snippets/quickstart-package-install.mdx @@ -43,7 +43,7 @@ Some packages we recommend you check out: [dbt_utils](https://github.com/dbt-lab ```yml packages.yml packages: - package: elementary-data/elementary - version: 0.22.0 + version: 0.23.0 ## Docs: https://docs.elementary-data.com ```