diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index af5d748c5..e49cff8db 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -29,10 +29,14 @@ 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.18.0]] +==== 6.18.0 - 2023-07-25 + [float] ===== Features @@ -43,10 +47,6 @@ endif::[] * Fix a bug in the Elasticsearch client instrumentation which was causing loss of database context (including statement) when interacting with Elastic Cloud {pull}1878[#1878] - -[[release-notes-6.x]] -=== Python Agent version 6.x - [[release-notes-6.17.0]] ==== 6.17.0 - 2023-07-03 diff --git a/elasticapm/version.py b/elasticapm/version.py index 0fb7fd9ce..efc5314e4 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, 17, 0) +__version__ = (6, 18, 0) VERSION = ".".join(map(str, __version__))