From 14cfadcba8d89be93c594c0f0efc874d26800666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Foramitti?= <57440945+JoelForamitti@users.noreply.github.com> Date: Thu, 14 Jan 2021 16:16:08 +0100 Subject: [PATCH] Release v0.0.6 --- agentpy/__init__.py | 2 +- docs/changelog.rst | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) 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`.