diff --git a/CHANGELOG.md b/CHANGELOG.md index ce83597..0891b8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/blender_asset_tracer/__init__.py b/blender_asset_tracer/__init__.py index f175814..ef9fc05 100644 --- a/blender_asset_tracer/__init__.py +++ b/blender_asset_tracer/__init__.py @@ -20,4 +20,4 @@ # -__version__ = '1.3-dev0' +__version__ = '1.3' diff --git a/docs/conf.py b/docs/conf.py index 74303f2..983b7ec 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-dev0' +version = '1.3' # The full version, including alpha/beta/rc tags -release = '1.3-dev0' +release = '1.3' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 290f5c4..58e33dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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`"