Skip to content

Commit

Permalink
Merge pull request #360 from DataDog/yann/changelog027
Browse files Browse the repository at this point in the history
0.27.0 changelog
  • Loading branch information
yannmh authored Mar 6, 2019
2 parents 75281f1 + c21b73f commit 4c51464
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
CHANGELOG
=========

# 0.27.0 / Unreleased

**New Dashboards API: https://docs.datadoghq.com/api/?lang=python#dashboards**

The Timeboard and Screenboard API resources are deprecated in favor of the new Dashboard resource. See https://docs.datadoghq.com/api/?lang=python#dashboards for more details.

* [BUGFIX] API: Fix `UnicodeError` exceptions raised by the API client on errors that contain non ascii characters, [#223][], [#346][]
* [BUGFIX] DogStatsD: Fix unsafe socket creation on multithreaded applications and catch more exceptions, [#212][], [#364][]
* [FEATURE] API: Add support for the new Dashboard API, [#351][]
* [OTHER] Support `tox` for testing, [#342][]
* [OTHER] Support Python 3.7, **drop support for Python 3.3**, [#345][]

# 0.26.0 / 2018-11-29

* [IMPROVEMENT] API: Keep HTTP connections alive when using `requests`, [#328][]
Expand Down Expand Up @@ -298,7 +310,9 @@ See [#8][], thanks [@benweatherman][]
[#203]: https://github.com/DataDog/datadogpy/issues/203
[#206]: https://github.com/DataDog/datadogpy/issues/206
[#207]: https://github.com/DataDog/datadogpy/issues/207
[#212]: https://github.com/DataDog/datadogpy/issues/212
[#221]: https://github.com/DataDog/datadogpy/issues/221
[#223]: https://github.com/DataDog/datadogpy/issues/223
[#228]: https://github.com/DataDog/datadogpy/issues/228
[#230]: https://github.com/DataDog/datadogpy/issues/230
[#233]: https://github.com/DataDog/datadogpy/issues/233
Expand Down Expand Up @@ -328,6 +342,11 @@ See [#8][], thanks [@benweatherman][]
[#312]: https://github.com/DataDog/datadogpy/issues/312
[#324]: https://github.com/DataDog/datadogpy/issues/324
[#328]: https://github.com/DataDog/datadogpy/issues/328
[#342]: https://github.com/DataDog/datadogpy/issues/342
[#345]: https://github.com/DataDog/datadogpy/issues/345
[#346]: https://github.com/DataDog/datadogpy/issues/346
[#351]: https://github.com/DataDog/datadogpy/issues/351
[#364]: https://github.com/DataDog/datadogpy/issues/364
[@GrahamDumpleton]: https://github.com/GrahamDumpleton
[@Tenzer]: https://github.com/Tenzer
[@aknuds1]: https://github.com/aknuds1
Expand Down
29 changes: 7 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,46 +4,31 @@

def get_readme_md_contents():
"""read the contents of your README file"""
with open('README.md') as f:
with open("README.md") as f:
long_description = f.read()
return long_description


install_reqs = [
"decorator>=3.3.2",
"requests>=2.6.0",
]
install_reqs = ["decorator>=3.3.2", "requests>=2.6.0"]

if [sys.version_info[0], sys.version_info[1]] < [2, 7]:
install_reqs.append("argparse>=1.2")

setup(
name="datadog",
version="0.26.0",
version="0.27.0",
install_requires=install_reqs,
tests_require=["nose", "mock"],
packages=[
'datadog',
'datadog.api',
'datadog.dogstatsd',
'datadog.threadstats',
'datadog.util',
'datadog.dogshell'
],
packages=["datadog", "datadog.api", "datadog.dogstatsd", "datadog.threadstats", "datadog.util", "datadog.dogshell"],
author="Datadog, Inc.",
long_description=get_readme_md_contents(),
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
author_email="[email protected]",
description="The Datadog Python library",
license="BSD",
keywords="datadog",
url="https://www.datadoghq.com",
entry_points={
'console_scripts': [
'dog = datadog.dogshell:main',
'dogwrap = datadog.dogshell.wrap:main',
],
},
entry_points={"console_scripts": ["dog = datadog.dogshell:main", "dogwrap = datadog.dogshell.wrap:main"]},
test_suite="tests",
classifiers=[
"License :: OSI Approved :: BSD License",
Expand All @@ -54,5 +39,5 @@ def get_readme_md_contents():
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
]
],
)

0 comments on commit 4c51464

Please sign in to comment.