From 9a368ea170468599b430fb7ac702b8d881cb6643 Mon Sep 17 00:00:00 2001 From: "Joel Z. Leibo" Date: Thu, 16 May 2024 04:09:01 -0700 Subject: [PATCH] Increment version number to 1.4.0 PiperOrigin-RevId: 634304156 Change-Id: I027c95144a76c7b648f76aef1916f1995a4cf4ac --- CHANGELOG.md | 22 ++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5568e4f5..95204ab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,28 @@ 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/). +## [1.4.0] - 2024-05-15 + +### Changed + +- Remove python 3.11-specific typing +- Improve the gpt_model wrapper +- Improve scene-related functionality + +### Added + +- Add aistudio model, remove deprecated cloud model, and rename vertex model. +- Add a debug language model that always returns empty strings and choice 0. +- Add a component that gets agents to think about justifications for their actions. +- Metrics initialize the measurements channel at construction time. This convention enables us to know which channels exist after initialization of players and GM. +- Add Schelling diagram payoffs computation for game master + +### Fixed + +- Make sure events only pop after current step and add player-specific view toggle. +- fix typo + + ## [1.3.0] - 2024-05-4 ### Changed diff --git a/setup.py b/setup.py index 1bf01ac7..c3c0f2a3 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setuptools.setup( name='gdm-concordia', - version='1.3.0', + version='1.4.0', license='Apache 2.0', license_files=['LICENSE'], url='https://github.com/google-deepmind/concordia',