diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index b8ad0d90c..956f90d9a 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.2]] +==== 6.21.2 - 2024-03-07 + +[float] +===== Bug fixes + +* Fix artifacts upload in CI build-distribution workflow {pull}1993[#1993] + [[release-notes-6.21.1]] ==== 6.21.1 - 2024-03-07 diff --git a/elasticapm/version.py b/elasticapm/version.py index 7cba6757b..38a43e781 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, 1) +__version__ = (6, 21, 2) VERSION = ".".join(map(str, __version__))