diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index c8294530e..445ac7986 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## [0.48.0] - 2024-09-16 + +### Changed + * Error management improvement: - A `PipelineFailure` exception was added to make it easier to catch translation and execution errors from supported backends. It is the parent exception to both `PipelineTranslationFailure` and `PipelineExecutionFailure` - On error, Pypika backends now raise a `PipelineTranslationFailure` which specifies the error, the step name and the step index if known. diff --git a/server/pyproject.toml b/server/pyproject.toml index d2ce4863a..0abc17117 100644 --- a/server/pyproject.toml +++ b/server/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "weaverbird" -version = "0.47.1" +version = "0.48.0" description = "A visual data pipeline builder with various backends" authors = ["Toucan Toco "] keywords = ["mongodb", "pandas", "sql", "data", "dataviz", "pipeline", "query", "builder"]