Bumped version to 1.3

This commit is contained in:
Sybren A. Stüvel 2021-02-02 13:42:09 +01:00
parent 23dea91572
commit 0a5a50ccf0
4 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
This file logs the changes that are actually interesting to users (new features,
changed functionality, fixed bugs).
## Version 1.3 (in development)
## Version 1.3 (2021-02-02)
- When creating a BAT pack, symlinks are no longer followed. This allows BAT-packing a directory structure with symlinked files (such as a Shaman checkout).
- When creating a BAT pack, mapped network drives are no longer changed from a drive letter to UNC notation. For example, when mapping a share `\\SERVER\Share` to drive letter `S:\`, BAT will now keep referencing `S:\` instead of rewriting paths to `\\SERVER\Share`.

View File

@ -20,4 +20,4 @@
# <pep8 compliant>
__version__ = '1.3-dev0'
__version__ = '1.3'

View File

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

View File

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