diff --git a/CHANGES.txt b/CHANGES.txt index 4a2c506a3..9cc5ba5f7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +== 0.16.1 | 2024-10-13 == +* Fix some incoherent world state that could result from doing things + on tick zero of turn zero, if you started the world with a NetworkX graph. +* Fix a rule running when it shouldn't have in the wolfsheep example + == 0.16.0 | 2024-10-11 == * A process pool. When you've stored a function in LiSE, you can `submit` it to `Engine.pool.submit(..)` using the standard Python diff --git a/LiSE/pyproject.toml b/LiSE/pyproject.toml index 06cef72d2..3fa69ce0a 100644 --- a/LiSE/pyproject.toml +++ b/LiSE/pyproject.toml @@ -7,7 +7,7 @@ include-package-data=false [project] name = "LiSE" -version = "0.16.0" +version = "0.16.1" authors = [ { name="Zachary Spector", email="public@zacharyspector.com" }, ]