diff --git a/datadog_checks_dev/CHANGELOG.md b/datadog_checks_dev/CHANGELOG.md index 9221a8ffa8af2..ace179e54511c 100644 --- a/datadog_checks_dev/CHANGELOG.md +++ b/datadog_checks_dev/CHANGELOG.md @@ -2,6 +2,21 @@ +## 29.0.0 / 2023-12-08 + +***Removed***: + +* remove pyro4 and serpent dependencies ([#16269](https://github.com/DataDog/integrations-core/pull/16269)) + +***Added***: + +* Bump the Python version from py3.9 to py3.11 ([#15997](https://github.com/DataDog/integrations-core/pull/15997)) +* Make the `spec.yaml` mandatory in integrations-core if there are configuration files ([#16345](https://github.com/DataDog/integrations-core/pull/16345)) + +***Fixed***: + +* Make the config_models mandatory in integrations-core ([#16311](https://github.com/DataDog/integrations-core/pull/16311)) + ## 28.0.1 / 2023-11-10 ***Fixed***: diff --git a/datadog_checks_dev/changelog.d/15997.added b/datadog_checks_dev/changelog.d/15997.added deleted file mode 100644 index 1922c30565b54..0000000000000 --- a/datadog_checks_dev/changelog.d/15997.added +++ /dev/null @@ -1 +0,0 @@ -Bump the Python version from py3.9 to py3.11 diff --git a/datadog_checks_dev/changelog.d/16269.removed b/datadog_checks_dev/changelog.d/16269.removed deleted file mode 100644 index b862d26445b71..0000000000000 --- a/datadog_checks_dev/changelog.d/16269.removed +++ /dev/null @@ -1 +0,0 @@ -remove pyro4 and serpent dependencies diff --git a/datadog_checks_dev/changelog.d/16311.fixed b/datadog_checks_dev/changelog.d/16311.fixed deleted file mode 100644 index 2f415a8f45124..0000000000000 --- a/datadog_checks_dev/changelog.d/16311.fixed +++ /dev/null @@ -1 +0,0 @@ -Make the config_models mandatory in integrations-core diff --git a/datadog_checks_dev/changelog.d/16345.added b/datadog_checks_dev/changelog.d/16345.added deleted file mode 100644 index 5bf73fa65fc71..0000000000000 --- a/datadog_checks_dev/changelog.d/16345.added +++ /dev/null @@ -1 +0,0 @@ -Make the `spec.yaml` mandatory in integrations-core if there are configuration files diff --git a/datadog_checks_dev/datadog_checks/dev/__about__.py b/datadog_checks_dev/datadog_checks/dev/__about__.py index dfc1c681e23fc..5f416c9393726 100644 --- a/datadog_checks_dev/datadog_checks/dev/__about__.py +++ b/datadog_checks_dev/datadog_checks/dev/__about__.py @@ -1,4 +1,4 @@ # (C) Datadog, Inc. 2018-present # All rights reserved # Licensed under a 3-clause BSD style license (see LICENSE) -__version__ = '28.0.1' +__version__ = '29.0.0'