diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 7b8073f50..05ae5194f 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -29,10 +29,13 @@ endif::[] //===== Bug fixes // -=== Unreleased -// Unreleased changes go here -// When the next release happens, nest these changes under the "Python Agent version 6.x" heading +[[release-notes-6.x]] +=== Python Agent version 6.x + +[[release-notes-6.19.0]] +==== 6.19.0 - 2023-10-11 + [float] ===== Features @@ -54,11 +57,6 @@ recorded as an extra span {pull}1914[#1914] * The log shipping feature in the Flask instrumentation will be removed in version 7.0.0 of the agent. - - -[[release-notes-6.x]] -=== Python Agent version 6.x - [[release-notes-6.18.0]] ==== 6.18.0 - 2023-07-25 diff --git a/elasticapm/version.py b/elasticapm/version.py index efc5314e4..e817f4ef1 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__ = (6, 18, 0) +__version__ = (6, 19, 0) VERSION = ".".join(map(str, __version__))