From 0cf05ff3f90c9630d60170e6d6711989ccd871f4 Mon Sep 17 00:00:00 2001 From: Benjamin Wohlwend Date: Thu, 22 Aug 2019 14:14:48 +0200 Subject: [PATCH] update CHANGELOG and bump version to 5.1.1 --- CHANGELOG.md | 4 ++-- elasticapm/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f09273503..f6aa678fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## Unreleased -[Check the diff](https://github.com/elastic/apm-agent-python/compare/v5.1.0...master) +## v5.1.1 +[Check the diff](https://github.com/elastic/apm-agent-python/compare/v5.1.0...v5.1.1) ### Bugfixes * fixed an issue with empty responses from APM Server's config endpoint (#562, #563) diff --git a/elasticapm/version.py b/elasticapm/version.py index 9a4882533..3830acde5 100644 --- a/elasticapm/version.py +++ b/elasticapm/version.py @@ -28,5 +28,5 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = (5, 1, 0) +__version__ = (5, 1, 1) VERSION = ".".join(map(str, __version__))