diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index e3a175577..4de9d53f0 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -33,6 +33,13 @@ endif::[] [[release-notes-6.x]] === Python Agent version 6.x +[[release-notes-6.2.2]] +==== 6.2.2 - 2021/06/07 + +[float] +===== Bug fixes + * Fix an attribute access bug introduced in 6.2.0 {pull}1149[#1149] + [[release-notes-6.2.1]] ==== 6.2.1 - 2021/06/03 diff --git a/elasticapm/version.py b/elasticapm/version.py index 956d16ac8..9993d1bdf 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, 2, 1) +__version__ = (6, 2, 2) VERSION = ".".join(map(str, __version__))