diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2d743f..67416973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Worker created deployments will cut flow name length to not reach max 64 character deployment name length +- Updated branding ### Deprecated @@ -21,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## 0.3.4 + ## 0.3.3 Released December 11th, 2023. diff --git a/README.md b/README.md index 9ae57bf8..eb0f0543 100644 --- a/README.md +++ b/README.md @@ -4,18 +4,16 @@ Visit the full docs [here](https://PrefectHQ.github.io/prefect-azure) to see add
## Welcome! @@ -26,11 +24,11 @@ prefect-azure is a collection of prebuilt Prefect tasks that can be used to quic ### Python setup -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.0. 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/). ### Installation diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico index c4b42158..159c4152 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 f83aa6ef..00000000 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 00000000..0d696821 Binary files /dev/null and b/docs/img/prefect-logo-mark.png differ diff --git a/docs/img/prefect-logo-white.png b/docs/img/prefect-logo-white.png deleted file mode 100644 index 50ca6139..00000000 Binary files a/docs/img/prefect-logo-white.png and /dev/null differ diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 7970c834..662cca0c 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,11 +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; @@ -53,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 86809085..bb7cb854 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