Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hush-hush committed May 6, 2020
1 parent 45e6cd1 commit 8befb95
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ CHANGELOG

[//]: # (comment: Don't forget to update src/DogStatsd.php:DogStatsd::version when releasing a new version)

# 1.5.0 / 2020-05-06

* Add telemetry to the client. See [official documentation][dogstatsd_telemetry_doc] for more information.
* Drop support for PHP `5.3`, `5.4` and `5.5`. Minimum supported version is now `5.6`.
* `ext-sockets` is now part of the composer requirement. Thanks to [derek9gag][].

# 1.4.1 / 2019-08-13

* Fix declared private fields names, thanks to [@localheinz][].
Expand Down Expand Up @@ -84,3 +90,5 @@ CHANGELOG
[@jmparks-ebates]: https://github.com/jmparks-ebates
[@Amaroq1]: https://github.com/Amaroq1
[@onema]: https://github.com/onema
[derek9gag]: https://github.com/derek9gag
[dogstatsd_telemetry_doc]: https://docs.datadoghq.com/developers/dogstatsd/high_throughput/?tab=php#client-side-telemetry
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ See [CHANGELOG.md](CHANGELOG.md) for changes.
Add the following to your `composer.json`:

```
"datadog/php-datadogstatsd": "1.4.*"
"datadog/php-datadogstatsd": "1.5.*"
```
The first version shipped in composer is *0.0.3*

Expand Down
2 changes: 1 addition & 1 deletion src/DogStatsd.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class DogStatsd
private static $__eventUrl = '/api/v1/events';

// Used for the telemetry tags
public static $version = '1.4.1';
public static $version = '1.5.0';

/**
* DogStatsd constructor, takes a configuration array. The configuration can take any of the following values:
Expand Down

0 comments on commit 8befb95

Please sign in to comment.