diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index cf6a99a7c..45934551a 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.2]] +==== 6.22.2 - 2024-05-20 + +[float] +===== Bug fixes + +* Fix CI release workflow {pull}2046[#2046] + [[release-notes-6.22.1]] ==== 6.22.1 - 2024-05-17 diff --git a/elasticapm/version.py b/elasticapm/version.py index e778fc5b2..9d26934f4 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, 1) +__version__ = (6, 22, 2) VERSION = ".".join(map(str, __version__))