Skip to content

Commit f978b4e

Browse files
tpgkevinRAcopybara-github
authored andcommitted
Release notes for 3.3.3 + update git hashes.
- Upgraded dependencies versions. - Added release date for 3.3.3 - Reordered changelog to be a numbered list. PiperOrigin-RevId: 769808336 Change-Id: Iffa074f52ef2e3f9d450ce6973a7e85980417367
1 parent e5631c0 commit f978b4e

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

cmake/MujocoDependencies.cmake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Build configuration for third party libraries used in MuJoCo.
1616

1717
set(MUJOCO_DEP_VERSION_lodepng
18-
b4ed2cd7ecf61d29076169b49199371456d4f90b
18+
17d08dd26cac4d63f43af217ebd70318bfb8189c
1919
CACHE STRING "Version of `lodepng` to be fetched."
2020
)
2121
set(MUJOCO_DEP_VERSION_tinyxml2
@@ -35,21 +35,21 @@ set(MUJOCO_DEP_VERSION_ccd
3535
CACHE STRING "Version of `ccd` to be fetched."
3636
)
3737
set(MUJOCO_DEP_VERSION_qhull
38-
0c8fc90d2037588024d9964515c1e684f6007ecc
38+
c7bee59d068a69f427b1273e71cdc5bc455a5bdd
3939
CACHE STRING "Version of `qhull` to be fetched."
4040
)
4141
set(MUJOCO_DEP_VERSION_Eigen3
42-
464c1d097891a1462ab28bf8bb763c1683883892
42+
d0b490ee091629068e0c11953419eb089f9e6bb2
4343
CACHE STRING "Version of `Eigen3` to be fetched."
4444
)
4545

4646
set(MUJOCO_DEP_VERSION_abseil
47-
d9e4955c65cd4367dd6bf46f4ccb8cd3d100540b # LTS 20250127.1
47+
bc257a88f7c1939f24e0379f14a3589e926c950c # LTS 20250512.0
4848
CACHE STRING "Version of `abseil` to be fetched."
4949
)
5050

5151
set(MUJOCO_DEP_VERSION_gtest
52-
6910c9d9165801d8827d628cb72eb7ea9dd538c5 # v1.16.0
52+
52eb8108c5bdec04579160ae17225d66034bd723 # v1.17.0
5353
CACHE STRING "Version of `gtest` to be fetched."
5454
)
5555

doc/changelog.rst

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@
22
Changelog
33
=========
44

5-
Upcoming version (not yet release)
6-
----------------------------------
5+
Version 3.3.3 (June 10, 2025)
6+
-----------------------------
77

88
General
99
^^^^^^^
10-
- Refactored island implementation so that island data is memory-contiguous. This speeds up island processing in the
11-
solver and clears the way for the addition of the Newton and PGS solvers (currently only CG is supported).
12-
- Removed the :at:`shell` plugin. This is now supported by :ref:`flexcomp<body-flexcomp>` and is active depending on
13-
the :ref:`elastic2d<flexcomp-elasticity-elastic2d>` attribute (off by default).
14-
- Replaced the :ref:`directional<body-light-directional>` (boolean) field for lights with a
15-
:ref:`type<body-light-type>` field (of type :ref:`mjtLightType<mjtLightType>`) to allow for additional lighting
16-
types.
17-
- Added new sub-component :ref:`mj_makeM` which combines the :ref:`mj_crb` call with additional logic to support the
18-
introduction in 3.3.1 of :ref:`tendon armature<tendon-spatial-armature>`. In addition to the traditional
19-
``mjData.qM``, :ref:`mj_makeM` also computes ``mjData.M``, a CSR representation of the same matrix.
20-
- Added a new function :ref:`mj_copyBack` to copy real-valued arrays in an mjModel to a compatible mjSpec.
21-
- Removed the limitation of :ref:`fusestatic<compiler-fusestatic>` to models which contain no references. The fusestatic
22-
flag will now fuse all bodies which are not referenced and ignore bodies which are referenced.
10+
1. Refactored island implementation so that island data is memory-contiguous. This speeds up island processing in the
11+
solver and clears the way for the addition of the Newton and PGS solvers (currently only CG is supported).
12+
2. Removed the :at:`shell` plugin. This is now supported by :ref:`flexcomp<body-flexcomp>` and is active depending on
13+
the :ref:`elastic2d<flexcomp-elasticity-elastic2d>` attribute (off by default).
14+
3. Replaced the :ref:`directional<body-light-directional>` (boolean) field for lights with a
15+
:ref:`type<body-light-type>` field (of type :ref:`mjtLightType<mjtLightType>`) to allow for additional lighting
16+
types.
17+
4. Added new sub-component :ref:`mj_makeM` which combines the :ref:`mj_crb` call with additional logic to support the
18+
introduction in 3.3.1 of :ref:`tendon armature<tendon-spatial-armature>`. In addition to the traditional
19+
``mjData.qM``, :ref:`mj_makeM` also computes ``mjData.M``, a CSR representation of the same matrix.
20+
5. Added a new function :ref:`mj_copyBack` to copy real-valued arrays in an mjModel to a compatible mjSpec.
21+
6. Removed the limitation of :ref:`fusestatic<compiler-fusestatic>` to models which contain no references. The fusestatic
22+
flag will now fuse all bodies which are not referenced and ignore bodies which are referenced.
2323

2424
Simulate
2525
^^^^^^^^
26-
- The struct ``mjv_sceneState`` has been removed. This struct was used for partial synchronization of ``mjModel`` and
27-
``mjData`` when the Python viewer is used in passive mode. This functionality is now provided by :ref:`mjv_copyModel`
28-
and :ref:`mjv_copyData`, which don't copy arrays which are not required for visualization.
26+
7. The struct ``mjv_sceneState`` has been removed. This struct was used for partial synchronization of ``mjModel`` and
27+
``mjData`` when the Python viewer is used in passive mode. This functionality is now provided by :ref:`mjv_copyModel`
28+
and :ref:`mjv_copyData`, which don't copy arrays which are not required for visualization.
2929

3030
.. image:: images/changelog/procedural_terrain_generation.png
3131
:width: 33%
@@ -34,11 +34,11 @@ Simulate
3434
Python bindings
3535
^^^^^^^^^^^^^^^
3636

37-
- Added examples of procedural terrain generation to the Model Editing tutorial: |mjspec_colab|
37+
8. Added examples of procedural terrain generation to the Model Editing tutorial: |mjspec_colab|
3838

3939
MJX
4040
^^^
41-
- Added tendon armature.
41+
9. Added tendon armature.
4242

4343
Version 3.3.2 (April 28, 2025)
4444
------------------------------

python/mujoco/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ findorfetch(
140140
GIT_REPO
141141
https://github.com/abseil/abseil-cpp
142142
GIT_TAG
143-
d9e4955c65cd4367dd6bf46f4ccb8cd3d100540b # LTS 20250127.1
143+
bc257a88f7c1939f24e0379f14a3589e926c950c # LTS 20250512.0
144144
TARGETS
145145
${MUJOCO_PYTHON_ABSL_TARGETS}
146146
EXCLUDE_FROM_ALL
@@ -173,7 +173,7 @@ findorfetch(
173173
GIT_REPO
174174
https://gitlab.com/libeigen/eigen
175175
GIT_TAG
176-
464c1d097891a1462ab28bf8bb763c1683883892
176+
d0b490ee091629068e0c11953419eb089f9e6bb2
177177
TARGETS
178178
Eigen3::Eigen
179179
EXCLUDE_FROM_ALL

0 commit comments

Comments
 (0)