diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c98a95..5d44b81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Updated branding + ### Deprecated ### Removed @@ -19,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## 0.4.1 + ## 0.3.1 Released on February 21st, 2023. diff --git a/README.md b/README.md index 1228f14..cfa9225 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,18 @@ -# Coordinate and use dbt in your dataflow with prefect-dbt +# prefect-dbt
Visit the full docs [here](https://PrefectHQ.github.io/prefect-dbt) to see additional examples and the API reference. @@ -159,20 +156,20 @@ pip install "prefect-dbt[postgres]" Check out the [desired profile setup page](https://docs.getdbt.com/reference/profiles.yml) on the sidebar for others. -Requires an installation of Python 3.7+. +Requires an installation of Python 3.8+. We recommend using a Python virtual environment manager such as pipenv, conda or virtualenv. -These tasks are designed to work with Prefect 2. For more information about how to use Prefect, please refer to the [Prefect documentation](https://orion-docs.prefect.io/). +These tasks are designed to work with Prefect 2. For more information about how to use Prefect, please refer to the [Prefect documentation](https://docs.prefect.io/). ### Saving credentials to block -Note, to use the `load` method on Blocks, you must already have a block document [saved through code](https://orion-docs.prefect.io/concepts/blocks/#saving-blocks) or [saved through the UI](https://orion-docs.prefect.io/ui/blocks/). +Note, to use the `load` method on Blocks, you must already have a block document [saved through code](https://docs.prefect.io/concepts/blocks/#saving-blocks) or [saved through the UI](https://docs.prefect.io/ui/blocks/). !!! info "Registering blocks" Register blocks in this module to - [view and edit them](https://orion-docs.prefect.io/ui/blocks/) + [view and edit them](https://docs.prefect.io/ui/blocks/) on Prefect Cloud: ```bash @@ -294,9 +291,9 @@ DbtCoreOperation.load("DBT-CORE-OPERATION-BLOCK-NAME-PLACEHOLDER") If you encounter any bugs while using `prefect-dbt`, feel free to open an issue in the [prefect-dbt](https://github.com/PrefectHQ/prefect-dbt) repository. -If you have any questions or issues while using `prefect-dbt`, you can find help in either the [Prefect Discourse forum](https://discourse.prefect.io/) or the [Prefect Slack community](https://prefect.io/slack). +If you have any questions or issues while using `prefect-dbt`, you can find help in the [Prefect Slack community](https://prefect.io/slack). -Feel free to star or watch [`prefect-dbt`](https://github.com/PrefectHQ/prefect-dbt) for updates too! +Feel free to star or watch [`prefect-dbt`](https://github.com/PrefectHQ/prefect-dbt) for updates, too! ### Contributing diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico index c4b4215..159c415 100644 Binary files a/docs/img/favicon.ico and b/docs/img/favicon.ico differ diff --git a/docs/img/prefect-logo-mark-solid-white-500.png b/docs/img/prefect-logo-mark-solid-white-500.png deleted file mode 100644 index f83aa6e..0000000 Binary files a/docs/img/prefect-logo-mark-solid-white-500.png and /dev/null differ diff --git a/docs/img/prefect-logo-mark.png b/docs/img/prefect-logo-mark.png new file mode 100644 index 0000000..0d69682 Binary files /dev/null and b/docs/img/prefect-logo-mark.png differ diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index c5e7306..662cca0 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -1,9 +1,9 @@ /* theme */ :root > * { /* theme */ - --md-primary-fg-color: #115AF4; - --md-primary-fg-color--light: #115AF4; - --md-primary-fg-color--dark: #115AF4; + --md-primary-fg-color: #26272B; + --md-primary-fg-color--light: #26272B; + --md-primary-fg-color--dark: #26272B; } /* Table formatting */ @@ -21,10 +21,58 @@ to force column width */ white-space: nowrap; } +/* badge formatting */ +.badge::before { + background-color: #1860F2; + color: white; + font-size: 0.8rem; + font-weight: normal; + padding: 4px 8px; + margin-left: 0.5rem; + vertical-align: super; + text-align: center; + border-radius: 5px; +} + +.badge-api::before { + background-color: #1860F2; + color: white; + font-size: 0.8rem; + font-weight: normal; + padding: 4px 8px; + text-align: center; + border-radius: 5px; +} + +.experimental::before { + background-color: #FCD14E; + content: "Experimental"; +} + +.cloud::before { + background-color: #799AF7; + content: "Prefect Cloud"; +} + +.deprecated::before { + background-color: #FA1C2F; + content: "Deprecated"; +} + +.new::before { + background-color: #2AC769; + content: "New"; +} + +.expert::before { + background-color: #726576; + content: "Advanced"; +} + /* dark mode slate theme */ /* dark mode code overrides */ [data-md-color-scheme="slate"] { - --md-code-bg-color: #252a33; + --md-code-bg-color: #1c1d20; --md-code-fg-color: #eee; --md-code-hl-color: #3b3d54; --md-code-hl-name-color: #eee; @@ -52,15 +100,15 @@ to force column width */ /* dark mode collection catalog overrides */ [data-md-color-scheme="slate"] .collection-item { - background-color: #3b3d54; + background-color: #26272B; } /* dark mode recipe collection overrides */ [data-md-color-scheme="slate"] .recipe-item { - background-color: #3b3d54; + background-color: #26272B; } /* dark mode API doc overrides */ [data-md-color-scheme="slate"] .prefect-table th { - background-color: #3b3d54; + background-color: #26272B; } \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index a3be11c..0f03c21 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -27,7 +27,7 @@ theme: icon: repo: fontawesome/brands/github logo: - img/prefect-logo-mark-solid-white-500.png + img/prefect-logo-mark.png font: text: Inter code: Source Code Pro