Bump version to 1.17-dev0

This commit is contained in:
Sybren A. Stüvel 2023-12-14 11:35:55 +01:00
parent 2a9bdc5206
commit 81ea8296da
5 changed files with 8 additions and 6 deletions

View File

@ -3,6 +3,8 @@
This file logs the changes that are actually interesting to users (new features,
changed functionality, fixed bugs).
# Version 1.17 (in development)
# Version 1.16 (2023-11-02)
- Add `BlendFileBlock.raw_data()` and `.as_string()` functions. These functions interpret the data in a `BlendFileBlock` as either `bytes` or `string`. This can be used to obtain the contents of a `char*` (instead of the more common embedded `char[N]` array).

View File

@ -163,6 +163,6 @@ index-servers =
pip install twine
poetry build
twine check dist/blender_asset_tracer-1.16.tar.gz dist/blender_asset_tracer-1.16-*.whl
twine upload -r bat dist/blender_asset_tracer-1.16.tar.gz dist/blender_asset_tracer-1.16-*.whl
twine check dist/blender_asset_tracer-1.17-dev0.tar.gz dist/blender_asset_tracer-1.17-dev0-*.whl
twine upload -r bat dist/blender_asset_tracer-1.17-dev0.tar.gz dist/blender_asset_tracer-1.17-dev0-*.whl
```

View File

@ -20,4 +20,4 @@
# <pep8 compliant>
__version__ = "1.16"
__version__ = "1.17-dev0"

View File

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

View File

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