diff --git a/CHANGELOG.md b/CHANGELOG.md index a3ce36d..21750d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.25.3] - 2023-07-04 + +- Pinned Pydantic's version (transient dependency from Copier) as new major version breaks our CLI. + ## [0.25.2] - 2023-06-16 ### Fixed @@ -261,7 +265,9 @@ - Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt` - Draft of `dp compile` and `dp deploy` -[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.2...HEAD +[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.3...HEAD + +[0.25.3]: https://github.com/getindata/data-pipelines-cli/compare/0.25.2...0.25.3 [0.25.2]: https://github.com/getindata/data-pipelines-cli/compare/0.25.1...0.25.2 diff --git a/data_pipelines_cli/__init__.py b/data_pipelines_cli/__init__.py index 26975ae..ae14569 100644 --- a/data_pipelines_cli/__init__.py +++ b/data_pipelines_cli/__init__.py @@ -5,4 +5,4 @@ pipelines. """ -version = "0.25.2" +version = "0.25.3" diff --git a/setup.cfg b/setup.cfg index 10109a5..44550c9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.25.2 +current_version = 0.25.3 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index db07ff3..d0d5862 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ "packaging==21.3", "colorama==0.4.5", "dbt-core==1.3.1", + "pydantic<2", ] EXTRA_FILESYSTEMS_REQUIRE = { @@ -68,7 +69,7 @@ setup( name="data_pipelines_cli", - version="0.25.2", + version="0.25.3", description="CLI for data platform", long_description=README, long_description_content_type="text/markdown",