diff --git a/HISTORY.rst b/HISTORY.rst index bbe1495..2f15c7d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,12 +2,17 @@ History ======= -1.0.6 (In development) -====================== +1.0.6 (April 22nd, 2021) +======================== Bug fixes: +* Add ``__repr__`` to Result class (#68) * Drop support for Python 3.6 (#70) +* bug 1706075: add Windows functions to prefix list +* bug 1699492: fix mutation issues in signature generation +* bug 1705027: add ``NS_CycleCollectorSuspect3`` to prefix list +* bug 1702984: add ``std::vector::_Emplace_reallocate`` to the prefix list 1.0.5 (March 18th, 2021) diff --git a/siggen/__init__.py b/siggen/__init__.py index 05a6894..3d333cf 100644 --- a/siggen/__init__.py +++ b/siggen/__init__.py @@ -6,8 +6,8 @@ # yyyymmdd -__releasedate__ = "20210318" +__releasedate__ = "20210422" # x.y.z or x.y.z.dev0 -- semver -__version__ = "1.0.5" +__version__ = "1.0.6" VERSION = parse_version(__version__)