Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.7] - 2026-06-05

Support for the next LTS version of Blender!

### Added

- [Support for Blender 5.2](https://github.com/Algebraic-UG/tree_clipper/issues/181).
- A bunch of new tests based on the bundled assets from Blender itself.

### Changed

### Fixed

- Get Bundle Item import [must have been broken](https://github.com/Algebraic-UG/tree_clipper/issues/214).

## [0.1.6] - 2026-02-26

This release is a Banger.
Expand Down
2 changes: 1 addition & 1 deletion packages/tree_clipper/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tree-clipper"
version = "0.1.6"
version = "0.1.7"
dependencies = []
maintainers = [
{ name="Algebraic", email="tree.clipper@algebraic.games" },
Expand Down
2 changes: 1 addition & 1 deletion packages/tree_clipper/src/tree_clipper/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# these fields are in the top level JSON object
BLENDER_VERSION = "blender_version"
TREE_CLIPPER_VERSION = "tree_clipper_version"
CURRENT_TREE_CLIPPER_VERSION = "0.1.6" # tested to match pyproject.toml
CURRENT_TREE_CLIPPER_VERSION = "0.1.7" # tested to match pyproject.toml
MATERIAL_NAME = "name"
TREES = "node_trees"
EXTERNAL = "external"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ schema_version = "1.0.0"
# Example of manifest file for a Blender extension
# Change the values according to your extension
id = "tree_clipper"
version = "0.1.6" # should match tree_clipper (core logic)
version = "0.1.7" # should match tree_clipper (core logic)
name = "Tree Clipper"
tagline = "Export and import Blender node trees as JSON"
maintainer = "Algebraic <tree.clipper@algebraic.games>"
Expand Down
Loading