From 95f8390f88fba3df3a302c58bb922eb2479354ff Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 8 Mar 2024 11:42:48 +0100 Subject: [PATCH] update CHANGELOG and bump version to 6.21.3 --- CHANGELOG.asciidoc | 8 ++++++++ elasticapm/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 956f90d9a..57a6cb95f 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -32,6 +32,14 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.21.3]] +==== 6.21.3 - 2024-03-08 + +[float] +===== Bug fixes + +* Fix artifacts download in CI workflows {pull}1996[#1996] + [[release-notes-6.21.2]] ==== 6.21.2 - 2024-03-07 diff --git a/elasticapm/version.py b/elasticapm/version.py index 38a43e781..6da6c370d 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, 21, 2) +__version__ = (6, 21, 3) VERSION = ".".join(map(str, __version__))