Skip to content

Commit

Permalink
Release v0.36.0 (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuncar authored May 5, 2020
1 parent 037380a commit 1fb5dbb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
CHANGELOG
=========
## v0.36.0 / 2020-05-05

* [Added] Add excluded_regions to POST/PUT AWS lib. See [#552](https://github.com/DataDog/datadogpy/pull/552).
* [Added] Add support for DD_ENV, DD_SERVICE, and DD_VERSION environment variables. See [#548](https://github.com/DataDog/datadogpy/pull/548).
* [Fixed] Fix dogwrap help output case. See [#557](https://github.com/DataDog/datadogpy/pull/557). Thanks [deiga](https://github.com/deiga).
* [Fixed] Fix decode attribute error with options for py3. See [#555](https://github.com/DataDog/datadogpy/pull/555).

## 0.35.0 / 2020-03-09

* [Added] Add `Set` metric type to threadstats. See [#545](https://github.com/DataDog/datadogpy/pull/545).
Expand Down
8 changes: 4 additions & 4 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ We create 2 environments:
- Default environments: they will run all Unit, Performance and Integration tests not marked as `admin_needed`.
- Execute this with the `tox` command.
- The explicit `integration-admin` environment: It will only run integration tests marked with the `admin_needed` marker.
- Tests marked as `admin-needed` need an API and APP Key with admin permissions.
- __!!!WARNING!!!__ These tests will use these keys to do destructive changes on your Datadog account.
- Tests marked as `admin-needed` need an API and APP Key with admin permissions.
- __!!!WARNING!!!__ These tests will use these keys to do destructive changes on your Datadog account.
- __Never use keys for an organization that contains anything important!__.

#### Setup Integration Tests
Expand Down Expand Up @@ -176,7 +176,7 @@ For example, to exclude all integrations tests using the `--ignore-glob` argumen
tox -- --ignore-glob=tests/integration/*
```

Another example below shows how to run test classes or test methods matching a given string by using the `-k` argument from `pytest`.
Another example below shows how to run test classes or test methods matching a given string by using the `-k` argument from `pytest`.
With this command, only run classes and methods matching `dogstatsd` are run.

```
Expand All @@ -193,7 +193,7 @@ tox -- tests/unit/dogstatsd

Make your change. Add tests for your change. Make the tests pass again.

You can also install this project locally in editable mode to make changes and run any manual tests.
You can also install this project locally in editable mode to make changes and run any manual tests.
This can be done by installing using the following pip command:

```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_readme_md_contents():

setup(
name="datadog",
version="0.36.0.dev",
version="0.36.0",
install_requires=install_reqs,
tests_require=["pytest", "mock", "freezegun"],
packages=["datadog", "datadog.api", "datadog.dogstatsd", "datadog.threadstats", "datadog.util", "datadog.dogshell"],
Expand Down

0 comments on commit 1fb5dbb

Please sign in to comment.