From 255a0a218f5496583ec4aa2a27496d31353339e8 Mon Sep 17 00:00:00 2001 From: Brax Team Date: Mon, 11 Mar 2024 13:38:23 -0700 Subject: [PATCH] Internal change PiperOrigin-RevId: 614779039 Change-Id: I5b9a0911a575bc27c97335e7e0720f2a4781d2fd --- README.md | 2 +- brax/__init__.py | 2 +- docs/release-notes/next-release.md | 3 --- docs/release-notes/v0.10.1.md | 5 +++++ setup.py | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 docs/release-notes/v0.10.1.md diff --git a/README.md b/README.md index 5ffcafb1..7a2db439 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ If you would like to reference Brax in a publication, please use: author = {C. Daniel Freeman and Erik Frey and Anton Raichuk and Sertan Girgin and Igor Mordatch and Olivier Bachem}, title = {Brax - A Differentiable Physics Engine for Large Scale Rigid Body Simulation}, url = {http://github.com/google/brax}, - version = {0.10.0}, + version = {0.10.1}, year = {2021}, } ``` diff --git a/brax/__init__.py b/brax/__init__.py index e2084154..d9e46435 100644 --- a/brax/__init__.py +++ b/brax/__init__.py @@ -14,7 +14,7 @@ """Import top-level classes and functions here for encapsulation/clarity.""" -__version__ = '0.10.0' +__version__ = '0.10.1' from brax.base import Motion from brax.base import State diff --git a/docs/release-notes/next-release.md b/docs/release-notes/next-release.md index fd9ef086..ca4ecb57 100644 --- a/docs/release-notes/next-release.md +++ b/docs/release-notes/next-release.md @@ -1,4 +1 @@ # Brax Release Notes - -* Fixes #460, #461, and an issue related to #353. -* Removes barkour v0 joystick policy in favor of the [MJX tutorial](https://colab.research.google.com/github/google-deepmind/mujoco/blob/main/mjx/tutorial.ipynb) training barkour vb. diff --git a/docs/release-notes/v0.10.1.md b/docs/release-notes/v0.10.1.md new file mode 100644 index 00000000..aaab78ee --- /dev/null +++ b/docs/release-notes/v0.10.1.md @@ -0,0 +1,5 @@ +# Brax Release Notes + +* Fixes #460, #461, and an issue related to #353. +* Removes barkour v0 joystick policy in favor of the [MJX tutorial](https://colab.research.google.com/github/google-deepmind/mujoco/blob/main/mjx/tutorial.ipynb) training barkour vb. +* Fixes #466. diff --git a/setup.py b/setup.py index 5cb02219..43f9aa99 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="brax", - version="0.10.0", + version="0.10.1", description="A differentiable physics engine written in JAX.", author="Brax Authors", author_email="no-reply@google.com",