From 6a530c98bd55d19f8f50e19868084317d8c93d4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Du=C3=A9=C3=B1ez-Guzm=C3=A1n?= Date: Thu, 27 Jun 2024 09:55:33 -0700 Subject: [PATCH] Bump version number to v2.3.0 PiperOrigin-RevId: 647353439 Change-Id: I29c217310ed9c820f790edaf54e9b0a813b64cb6 --- CHANGELOG.md | 16 ++++++++++++++++ setup.py | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ce1a2f0..77989a8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.3.0] - 2024-06-27 + +### Added + +- New scenarios, puppets and bots used in the Melting Pot Contest, NeurIPS 2023. + +### Known issues + +- Two scenarios in the competition were set up wrongly. Tracking issue: + https://github.com/google-deepmind/meltingpot/issues/246 + * `clean_up_20` is using the wrong (puppet) bot: + `clean_up__puppet_sanctioning_alternator_nice_0` instead of + `clean_up__puppet_sanctioning_alternator_0`. + * `territory__rooms_6` is identical to `territory__rooms_5`. + + ## [2.2.2] - 2024-03-20 ### Fixed diff --git a/setup.py b/setup.py index 2e6b1d0d..39b53e91 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ import setuptools from setuptools.command import build_py -VERSION = '2.2.2' -ASSETS_VERSION = '2.2.1' +VERSION = '2.3.0' +ASSETS_VERSION = '2.3.0' ASSETS_URL = f'http://storage.googleapis.com/dm-meltingpot/meltingpot-assets-{ASSETS_VERSION}.tar.gz'