diff --git a/CHANGELOG.md b/CHANGELOG.md index 057a5b5..81dd383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ This file logs the changes that are actually interesting to users (new features, changed functionality, fixed bugs). +## Version 1.5.1 (2021-07-22) + +- Add log warning if SegmentationFault caused by dereferencing invalid pointer is silenced when strict_pointer_mode is turned off. + ## Version 1.5 (2021-07-22) - Drop support for Python 3.5 and 3.6, and add support for 3.8 and 3.9. diff --git a/blender_asset_tracer/__init__.py b/blender_asset_tracer/__init__.py index 3b8c1bc..2a44742 100644 --- a/blender_asset_tracer/__init__.py +++ b/blender_asset_tracer/__init__.py @@ -20,4 +20,4 @@ # -__version__ = "1.6b0" +__version__ = "1.5.1" diff --git a/docs/conf.py b/docs/conf.py index 4e8b2ab..d397db0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,9 @@ copyright = '2018, Sybren A. Stüvel' author = 'Sybren A. Stüvel' # The short X.Y version -version = '1.6b0' +version = '1.5.1' # The full version, including alpha/beta/rc tags -release = '1.6b0' +release = '1.5.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index eff3f6b..d87caaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "blender-asset-tracer" -version = "1.6b0" +version = "1.5.1" homepage = 'https://developer.blender.org/project/profile/79/' description = "BAT parses Blend files and produces dependency information. After installation run `bat --help`"