diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 056207699..184e4da28 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -7,10 +7,15 @@ == Changelog -[[release-next]] +//[[release-next]] +//[float] +//=== Unreleased +//https://github.com/elastic/apm-agent-python/compare/v1.0.0\...master[Check the HEAD diff] + +[[release-1.0.0]] [float] -=== Unreleased -https://github.com/elastic/apm-agent-python/compare/v1.0.0.dev3\...master[Check the HEAD diff] +=== v1.0.0 +https://github.com/elastic/apm-agent-python/compare/v1.0.0.dev3\...v1.0.0[Check the HEAD diff] * added `max-event-queue-length` setting. ({pull}67[#67]) * changed name that the agent reports itself with to the APM server from `elasticapm-python` to `python`. This aligns the Python agent with other languages. ({pull}104[#104]) diff --git a/elasticapm/version.py b/elasticapm/version.py index 806ef3b4f..753ef5606 100644 --- a/elasticapm/version.py +++ b/elasticapm/version.py @@ -1,2 +1,2 @@ -__version__ = (1, 0, 0, 'dev3') +__version__ = (1, 0, 0) VERSION = '.'.join(map(str, __version__))