Bumped version to 1.5.1

This commit is contained in:
Paul Golter 2021-07-22 16:03:43 +02:00
parent db26a0aaf1
commit 4305f32c48
4 changed files with 8 additions and 4 deletions

View File

@ -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.

View File

@ -20,4 +20,4 @@
# <pep8 compliant>
__version__ = "1.6b0"
__version__ = "1.5.1"

View File

@ -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 ---------------------------------------------------

View File

@ -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`"