diff --git a/CHANGELOG.md b/CHANGELOG.md index 52d0044..0fac888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ This file logs the changes that are actually interesting to users (new features, changed functionality, fixed bugs). -## Version 1.4 (in development) +## Version 1.4 (2021-07-22) - Add a *Strict Pointer Mode* setting, which determines what happens when a pointer to an unknown datablock is dereferenced. When enabled, a `SegmentationFault` exception stops the program execution. This has always been the behaviour of BAT, but it now has a name and can be disabled. diff --git a/blender_asset_tracer/__init__.py b/blender_asset_tracer/__init__.py index 86c3492..92ecd25 100644 --- a/blender_asset_tracer/__init__.py +++ b/blender_asset_tracer/__init__.py @@ -20,4 +20,4 @@ # -__version__ = "1.3.1" +__version__ = "1.4" diff --git a/docs/conf.py b/docs/conf.py index e89dc38..6b35b24 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.3.1' +version = '1.4' # The full version, including alpha/beta/rc tags -release = '1.3.1' +release = '1.4' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2f42530..ad5937e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "blender-asset-tracer" -version = "1.3.1" +version = "1.4" homepage = 'https://developer.blender.org/project/profile/79/' description = "BAT parses Blend files and produces dependency information. After installation run `bat --help`"