diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c7b9d0b..4a2c9bc18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ CHANGELOG ========= +# 0.33.0 / 2019-12-12 + +* [FEATURE] Roles and Permissions APIs [#481][] +* [FEATURE] Add support for Azure, GCP and AWS integrations endpoints [#429][] +* [FEATURE] Add support for new `Monitor.can_delete` endpoint [#474][] +* [FEATURE] Add support for the `Monitor.validate` endpoint [#487][] +* [FEATURE] Add support for `/v1/downtime/cancel/by_scope` [#488][] +* [IMPROVEMENT] Dogshell: remove Exception wrapping [#477][] + # 0.32.0 / 2019-11-18 * [BUGFIX] Fix distribution metric submission by sending api/app keys through query params for this endpoint. [#480][] @@ -459,6 +468,7 @@ See [#8][], thanks [@benweatherman][] [#423]: https://github.com/DataDog/datadogpy/issues/423 [#425]: https://github.com/DataDog/datadogpy/issues/425 [#428]: https://github.com/DataDog/datadogpy/issues/428 +[#429]: https://github.com/DataDog/datadogpy/issues/429 [#433]: https://github.com/DataDog/datadogpy/issues/433 [#446]: https://github.com/DataDog/datadogpy/issues/446 [#447]: https://github.com/DataDog/datadogpy/issues/447 @@ -472,7 +482,12 @@ See [#8][], thanks [@benweatherman][] [#466]: https://github.com/DataDog/datadogpy/issues/466 [#467]: https://github.com/DataDog/datadogpy/issues/467 [#470]: https://github.com/DataDog/datadogpy/issues/470 +[#474]: https://github.com/DataDog/datadogpy/issues/474 +[#477]: https://github.com/DataDog/datadogpy/issues/477 [#480]: https://github.com/DataDog/datadogpy/issues/480 +[#481]: https://github.com/DataDog/datadogpy/issues/481 +[#487]: https://github.com/DataDog/datadogpy/issues/487 +[#488]: https://github.com/DataDog/datadogpy/issues/488 [@Alphadash]: https://github.com/Alphadash [@GrahamDumpleton]: https://github.com/GrahamDumpleton [@Hefeweizen]: https://github.com/Hefeweizen diff --git a/setup.py b/setup.py index f9a11b7e1..25f243126 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def get_readme_md_contents(): setup( name="datadog", - version="0.32.0", + version="0.33.0", install_requires=install_reqs, tests_require=["pytest", "mock", "freezegun"], packages=["datadog", "datadog.api", "datadog.dogstatsd", "datadog.threadstats", "datadog.util", "datadog.dogshell"],