diff --git a/agentpy/__init__.py b/agentpy/__init__.py index 906eabf..7c7d23f 100644 --- a/agentpy/__init__.py +++ b/agentpy/__init__.py @@ -18,7 +18,7 @@ 'AttrDict' ] # Meta-data -__version__ = "0.0.6.dev" +__version__ = "0.0.6" # Objects from .lists import AttrList, ObjList, AgentList, EnvList diff --git a/docs/changelog.rst b/docs/changelog.rst index 94f4035..29f69a7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,15 +4,16 @@ Changelog ========= -0.0.6.dev ---------- +0.0.6 (January 2021) +-------------------- -* New demonstration model :doc:`agentpy_segregation`. - Other demonstrations have been updated. +* A new demonstration model :doc:`agentpy_segregation` has been added. * All model objects now have a unique id number of type :class:`int`. Methods that take an agent or environment as an argument can now take either the instance or id of the object. The :attr:`key` attribute of environments has been removed. +* Extra keyword arguments to :class:`Model` and :class:`Experiment` + are now forwarded to :func:`Model.setup`. * :func:`Model.run` now takes an optional argument `steps`. * :class:`EnvDict` has been replaced by :class:`EnvList`, which has the same functionalities as :class:`AgentList`.