From c4f1e1bc5985734e1151162a6e28871531467321 Mon Sep 17 00:00:00 2001 From: Ivan Trusov Date: Wed, 24 Aug 2022 15:31:07 +0200 Subject: [PATCH] :bookmark: fix release pipeline (#419) * fix description type * bump version * fix version * improve changelog --- CHANGELOG.md | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8db836f..b1f601f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > And empty the **[Unreleased]** section above. ---- -## [07.0] - 2022-08-24 +## [0.7.0] - 2022-08-24 ## Added - 🎨Switch all the CLI interfaces to `typer` @@ -34,8 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changed - ✨Arguments `--allow-delete-unmatched`/`--disallow-delete-unmatched` were **replaced** with `--unmatched-behaviour` option. -- 🏷️Deprecate `jobs` section and rename it to `workflow` -- 🏷️Deprecate `job` and `jobs` argument and rename it to `workflow` +- 🏷️Deprecate `jobs` section and rename it to `workflows` +- 🏷️Deprecate `job` and `jobs` options and rename it to `workflow` argument - ✨Refactored all cluster-relevant methods into a separate `ClusterController` - ✨Refactored model-related components for `.dbx/project.json` file - ✨Refactored `launch`-related API-level code diff --git a/setup.py b/setup.py index 84f6746c..9c85c627 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ extras_require={"dev": DEV_REQUIREMENTS}, entry_points={"console_scripts": ["dbx=dbx.cli:entrypoint"]}, long_description=long_description, - long_description_content_type="text/x-rst", + long_description_content_type="text/markdown", include_package_data=True, version=__version__, description="DataBricks CLI eXtensions aka dbx",