Bumped version to 1.4

This commit is contained in:
Sybren A. Stüvel 2021-07-22 11:26:03 +02:00
parent 8927461dbf
commit b36effa6ec
4 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ This file logs the changes that are actually interesting to users (new features,
changed functionality, fixed bugs). 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. - 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.

View File

@ -20,4 +20,4 @@
# <pep8 compliant> # <pep8 compliant>
__version__ = "1.3.1" __version__ = "1.4"

View File

@ -24,9 +24,9 @@ copyright = '2018, Sybren A. Stüvel'
author = 'Sybren A. Stüvel' author = 'Sybren A. Stüvel'
# The short X.Y version # The short X.Y version
version = '1.3.1' version = '1.4'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '1.3.1' release = '1.4'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "blender-asset-tracer" name = "blender-asset-tracer"
version = "1.3.1" version = "1.4"
homepage = 'https://developer.blender.org/project/profile/79/' homepage = 'https://developer.blender.org/project/profile/79/'
description = "BAT parses Blend files and produces dependency information. After installation run `bat --help`" description = "BAT parses Blend files and produces dependency information. After installation run `bat --help`"