diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 45934551a..b8df53ab6 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -32,6 +32,14 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.22.3]] +==== 6.22.3 - 2024-06-10 + +[float] +===== Bug fixes + +* Fix outcome in ASGI and Starlette apps on error status codes without an exception {pull}2060[#2060] + [[release-notes-6.22.2]] ==== 6.22.2 - 2024-05-20 diff --git a/elasticapm/version.py b/elasticapm/version.py index 9d26934f4..82aa446ad 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, 22, 2) +__version__ = (6, 22, 3) VERSION = ".".join(map(str, __version__))