Skip to content

Commit

Permalink
Merge pull request #267 from threedworld-mit/destroy_composite_object
Browse files Browse the repository at this point in the history
Fixed: NullReferenceException when sending destroy_object for a composite object
  • Loading branch information
alters-mit authored Sep 14, 2021
2 parents 91aaafc + b9c025a commit 957cff2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

To upgrade from TDW v1.7 to v1.8, read [this guide](Documentation/upgrade_guides/v1.7_to_v1.8).

## v1.8.26

### Build

- Fixed: NullReferenceException when sending `destroy_object` for a composite object.

## v1.8.25

### Command API
Expand Down
2 changes: 1 addition & 1 deletion Python/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from pathlib import Path

__version__ = "1.8.25.0"
__version__ = "1.8.26.0"
readme_path = Path('../README.md')
if readme_path.exists():
long_description = readme_path.read_text(encoding='utf-8')
Expand Down
2 changes: 1 addition & 1 deletion Python/tdw/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.25"
__version__ = "1.8.26"

0 comments on commit 957cff2

Please sign in to comment.