Skip to content

Commit

Permalink
v0.10.22
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserfarouk committed Apr 4, 2024
1 parent ef8ac5e commit 88c4f36
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
History
=======

Release 0.10.22
---------------

* Saving repeated runs in cartesian tournaments.
* Adding sort_runs to cartesian tournaments. Passing sort_runs overrides randomize_runs and causes smaller scenarios to be negotiated first. Scenario's size is the product of the outcome-space cardinality, number of steps, and time-limits.
* Improving parallelism in cartesian tournaments:

* Adding max-tasks-per-process
* Adding external_timeout to cartesian tournaments. This parameter is only effective for parallel runs and enforces and external timeout on all tasks. This will avoid waiting for slow negotiators but it has the disadvantage of causing the main thread to never end. Tournaments may now need C-c to end.
* Adding _InfiniteWaiter negotiator for testing
* Accepting None for hidden_time_limit in Mechanism.

Release 0.10.21
---------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.21
0.10.22
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
# the built documents.
#
# The short X.Y version.
version = "0.10.21"
version = "0.10.22"
# The full version, including alpha/cost/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion negmas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Yasser Mohammad"""
__email__ = "[email protected]"
__version__ = "0.10.21"
__version__ = "0.10.22"


from .config import *
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[bumpversion]
current_version = 0.10.21
current_version = 0.10.22
delete_bookmark = True
commit = False
tag = False

[metadata]
name = negmas
version = 0.10.21
version = 0.10.22
author = Yasser Mohammad
author_email = [email protected]
description = NEGotiations Managed by Agent Simulations
Expand Down

0 comments on commit 88c4f36

Please sign in to comment.