diff --git a/CHANGELOG.md b/CHANGELOG.md index 1101db3..786f045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.11.6] + +### Added + +- `include_related` query parameter to the `get_job` method + ## [0.11.5] ### Added diff --git a/dbtc/_version.py b/dbtc/_version.py index 91df974..be37974 100644 --- a/dbtc/_version.py +++ b/dbtc/_version.py @@ -1 +1 @@ -__version__ = "0.11.5" +__version__ = "0.11.6" diff --git a/docs/changelog.md b/docs/changelog.md index 582b8fb..496b24f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,38 @@ # Changelog +## [0.11.6] + +### Added + +- `include_related` query parameter to the `get_job` method + +## [0.11.5] + +### Added + +- New `search` method in the metadata client for searching across dbt resources +- Retry logic to the common session object for the following status codes: 429, 500, 502, 503, 504 + +### Updated + +- `public_models` method on the `metadata` property - now allows for argument-based filtering. + +### Removed + +- Rudderstack tracking code + +## [0.11.4] + +### Fixed + +- Add payload parameter to create_managed_repository + +## [0.11.3] + +### Added + +- `requiresMetricTime` field to GetMetrics semantic layer query + ## [0.11.2] ### Fixed diff --git a/pyproject.toml b/pyproject.toml index a92f55e..0f4d679 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dbtc" -version = "0.11.5" +version = "0.11.6" description = "An unaffiliated python wrapper for dbt Cloud APIs" authors = [ {name = "Doug Guthrie", email = "douglas.p.guthrie@gmail.com"},