Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 415388576
Change-Id: I975be71ad0c63e3e8029d4407981a30544a37313
  • Loading branch information
Brax Team authored and erikfrey committed Dec 10, 2021
1 parent 4672000 commit a433dcb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,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.0.8},
version = {0.0.9},
year = {2021},
}
```
2 changes: 1 addition & 1 deletion brax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

"""Import top-level classes and functions here for encapsulation/clarity."""

__version__ = '0.0.8'
__version__ = '0.0.9'

from brax.physics.base import Info
from brax.physics.base import QP
Expand Down
2 changes: 1 addition & 1 deletion brax/io/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def render(sys: brax.System, qps: List[brax.QP], height: int = 480) -> str:
</script>
<div id="brax-viewer"></div>
<script type="module">
import {Viewer} from 'https://cdn.jsdelivr.net/gh/google/[email protected].8/js/viewer.js';
import {Viewer} from 'https://cdn.jsdelivr.net/gh/google/[email protected].9/js/viewer.js';
const domElement = document.getElementById('brax-viewer');
var viewer = new Viewer(domElement, system);
</script>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="brax",
version="0.0.8",
version="0.0.9",
description=("A differentiable physics engine written in JAX."),
author="Brax Authors",
author_email="[email protected]",
Expand Down

0 comments on commit a433dcb

Please sign in to comment.