Skip to content

Commit

Permalink
Update version number to 2.1.1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 516580515
Change-Id: I4c83da7711af52833ef59724d9e3244ba835d7d8
  • Loading branch information
jagapiou authored and copybara-github committed Mar 14, 2023
1 parent 7de41d2 commit d0a0dc4
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ 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.1.1] - 2023-02-16

### Changed

- Added COLLECTIVE_RETURN to PERMITTED_OBSERVATIONS.
- Split install.sh into three scripts.
- Move from yapf to black.
- Remove debug observations to speed up environment stepping.

### Fixed

- Add Lua 5.2 compatibility for `unpack`.

### Removed

- SubstrateWrappers previously needed for the v1 bots.

### Added

- Colab for visualizing evaluation results.
- Tests for the examples.
- Mocks of specific substrates and scenarios, for use in testing.
- Helper for setting world.rgb spec.


## [2.1.0] - 2022-12-06

### Changed
Expand Down Expand Up @@ -32,7 +57,7 @@ for detailed information on the new substrates, bots, and scenarios.
### Changed

- Removed all v1 scenarios, bots, and substrates and replaced with new versions.
- Scenarios now support heterogenous roles, which must be specified at build
- Scenarios now support heterogeneous roles, which must be specified at build
time.
- Various improvements to `examples` and their documentation.

Expand Down
2 changes: 1 addition & 1 deletion notebooks/evaluation_results.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
"outputs": [],
"source": [
"# @title Load scenario results\n",
"path = 'https://storage.googleapis.com/dm-meltingpot/meltingpot-results-2.1.0.feather' # @param {type: 'string'}\n",
"path = 'https://storage.googleapis.com/dm-meltingpot/meltingpot-results-2.1.1.feather' # @param {type: 'string'}\n",
"\n",
"def load_scenario_results(path):\n",
" results = pd.read_feather(path)\n",
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@

setuptools.setup(
name='dm-meltingpot',
version='2.1.0',
version='2.1.1',
license='Apache 2.0',
license_files=['LICENSE'],
url='https://github.com/deepmind/meltingpot',
download_url='https://github.com/deepmind/meltingpot',
author='DeepMind',
author_email='[email protected]',
description='A suite of test scenarios for multi-agent reinforcement learning.',
description=(
'A suite of test scenarios for multi-agent reinforcement learning.'),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords='multi-agent reinforcement-learning python machine-learning',
Expand Down

0 comments on commit d0a0dc4

Please sign in to comment.