From c4d928a21b07f3ec04a0c2e296d03d5f80536ef4 Mon Sep 17 00:00:00 2001 From: bpcreech <35012922+bpcreech@users.noreply.github.com> Date: Sun, 19 May 2024 19:23:34 -0400 Subject: [PATCH] Prep for v0.12.2 release (#65) --- HISTORY.md | 7 +++++-- src/py_mini_racer/__about__.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b5edf38b..a8ded198 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,11 +1,14 @@ # History -## 0.12.2 (2024-05-??) +## 0.12.2 (2024-05-20) + +- Add optional context manager and `.close()` semantics to Python `MiniRacer` class. - Fixed a potential hang on MiniRacer teardown if MiniRacer is executing a microtask which loops infinitely. -- Add optional context manager and `.close()` semantics to Python `MiniRacer` class. +- Switch C++ side of MiniRacer to a more straightforward object lifecycle management + model. ## 0.12.1 (2024-05-18) diff --git a/src/py_mini_racer/__about__.py b/src/py_mini_racer/__about__.py index b8ba19d3..dfd9b3c0 100644 --- a/src/py_mini_racer/__about__.py +++ b/src/py_mini_racer/__about__.py @@ -1,3 +1,3 @@ __author__ = "bpcreech" __email__ = "mini-racer@bpcreech.com" -__version__ = "0.12.1" +__version__ = "0.12.2"