From 7c2869c9291eb516559a853fead2015d801c85fd Mon Sep 17 00:00:00 2001 From: Yasser Mohammad Date: Sun, 24 Dec 2023 21:21:03 +0900 Subject: [PATCH] v0.10.9 --- HISTORY.rst | 12 ++++++++++++ VERSION | 2 +- docs/conf.py | 2 +- negmas/__init__.py | 2 +- setup.cfg | 4 ++-- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6aaf1db9..6468f1c5 100755 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,18 @@ History ======= +Release 0.10.9 +-------------- + +* Correcting the path to the genius bridge +* Adding plotting of offline runs +* Better styling of plots +* removing n_trials from generate_utility (not needed) +* Full testing of ufun generators +* Passing private_infos to cartesian tournaments +* bugfix: Private info not passed from SAONegotiator +* Supporting yaml for saving and loading domains + Release 0.10.8 -------------- diff --git a/VERSION b/VERSION index 1a46c7f1..f314d020 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.8 +0.10.9 diff --git a/docs/conf.py b/docs/conf.py index d9c4d296..25392478 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -92,7 +92,7 @@ # the built documents. # # The short X.Y version. -version = "0.10.8" +version = "0.10.9" # The full version, including alpha/cost/rc tags. release = version diff --git a/negmas/__init__.py b/negmas/__init__.py index f27461a8..3e0a1150 100755 --- a/negmas/__init__.py +++ b/negmas/__init__.py @@ -4,7 +4,7 @@ __author__ = """Yasser Mohammad""" __email__ = "yasserfarouk@gmail.com" -__version__ = "0.10.8" +__version__ = "0.10.9" from .config import * diff --git a/setup.cfg b/setup.cfg index 26b30832..e2339518 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [bumpversion] -current_version = 0.10.8 +current_version = 0.10.9 delete_bookmark = True commit = False tag = False [metadata] name = negmas -version = 0.10.8 +version = 0.10.9 author = Yasser Mohammad author_email = yasserfarouk@gmail.com description = NEGotiations Managed by Agent Simulations