File tree Expand file tree Collapse file tree 14 files changed +27
-27
lines changed
Expand file tree Collapse file tree 14 files changed +27
-27
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ set(MSVC_INCREMENTAL_DEFAULT ON)
2828
2929project (
3030 mujoco
31- VERSION 2.3.2
31+ VERSION 2.3.3
3232 DESCRIPTION "MuJoCo Physics Simulator"
3333 HOMEPAGE_URL "https://mujoco.org"
3434)
Original file line number Diff line number Diff line change 111 VERSIONINFO
2- FILEVERSION 2,3,2 ,0
3- PRODUCTVERSION 2,3,2 ,0
2+ FILEVERSION 2,3,3 ,0
3+ PRODUCTVERSION 2,3,3 ,0
44FILEOS 0x4
55FILETYPE 0x1
66{
@@ -9,9 +9,9 @@ FILETYPE 0x1
99 BLOCK "040904b0"
1010 {
1111 VALUE "ProductName", "MuJoCo"
12- VALUE "ProductVersion", "2.3.2 "
12+ VALUE "ProductVersion", "2.3.3 "
1313 VALUE "FileDescription", "MuJoCo"
14- VALUE "FileVersion", "2.3.2 "
14+ VALUE "FileVersion", "2.3.3 "
1515 VALUE "InternalName", "mujoco.dll"
1616 VALUE "OriginalFilename", "mujoco.dll"
1717 VALUE "CompanyName", "DeepMind"
Original file line number Diff line number Diff line change 11MUJOCO ICON "mujoco.ico"
22
331 VERSIONINFO
4- FILEVERSION 2,3,2 ,0
5- PRODUCTVERSION 2,3,2 ,0
4+ FILEVERSION 2,3,3 ,0
5+ PRODUCTVERSION 2,3,3 ,0
66FILEOS 0x4
77FILETYPE 0x1
88{
@@ -11,9 +11,9 @@ FILETYPE 0x1
1111 BLOCK "040904b0"
1212 {
1313 VALUE "ProductName", "MuJoCo"
14- VALUE "ProductVersion", "2.3.2 "
14+ VALUE "ProductVersion", "2.3.3 "
1515 VALUE "FileDescription", "MuJoCo"
16- VALUE "FileVersion", "2.3.2 "
16+ VALUE "FileVersion", "2.3.3 "
1717 VALUE "InternalName", "simulate.exe"
1818 VALUE "OriginalFilename", "simulate.exe"
1919 VALUE "CompanyName", "DeepMind"
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ _____
3030
3131The MuJoCo app needs to be run at least once before the native library can be used, in order to register the library as
3232a trusted binary. Then, copy the dynamic library file from
33- ``/Applications/MuJoCo.app/Contents/Frameworks/mujoco.framework/Versions/Current/libmujoco.2.3.2 .dylib `` (it can be
33+ ``/Applications/MuJoCo.app/Contents/Frameworks/mujoco.framework/Versions/Current/libmujoco.2.3.3 .dylib `` (it can be
3434found by browsing the contents of ``MuJoCo.app ``) and rename it as ``mujoco.dylib ``.
3535
3636Linux
3737_____
3838
3939Expand the ``tar.gz `` archive to ``~/.mujoco ``. Then copy the dynamic library from
40- ``~/.mujoco/mujoco-2.3.2 /lib/libmujoco.so.2.3.2 `` and rename it as ``libmujoco.so ``.
40+ ``~/.mujoco/mujoco-2.3.3 /lib/libmujoco.so.2.3.3 `` and rename it as ``libmujoco.so ``.
4141
4242Windows
4343_______
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ extern "C" {
2424#endif
2525
2626// header version; should match the library version as returned by mj_version()
27- #define mjVERSION_HEADER 232
27+ #define mjVERSION_HEADER 233
2828
2929// needed to define size_t, fabs and log10
3030#include <stdlib.h>
Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ if(NOT TARGET mujoco)
8484 if (MUJOCO_FRAMEWORK)
8585 message ("MuJoCo framework is at ${MUJOCO_FRAMEWORK} /mujoco.framework" )
8686 set (MUJOCO_LIBRARY
87- ${MUJOCO_FRAMEWORK} /mujoco.framework/Versions/A/libmujoco.2.3.2 .dylib
87+ ${MUJOCO_FRAMEWORK} /mujoco.framework/Versions/A/libmujoco.2.3.3 .dylib
8888 )
8989 target_compile_options (mujoco INTERFACE -F${MUJOCO_FRAMEWORK} )
9090 endif ()
9191 endif ()
9292
9393 if (NOT MUJOCO_FRAMEWORK)
9494 find_library (
95- MUJOCO_LIBRARY mujoco mujoco.2.3.2 HINTS ${MUJOCO_LIBRARY_DIR} REQUIRED
95+ MUJOCO_LIBRARY mujoco mujoco.2.3.3 HINTS ${MUJOCO_LIBRARY_DIR} REQUIRED
9696 )
9797 find_path (MUJOCO_INCLUDE mujoco/mujoco.h HINTS ${MUJOCO_INCLUDE_DIR} REQUIRED )
9898 message ("MuJoCo is at ${MUJOCO_LIBRARY} " )
Original file line number Diff line number Diff line change 77 <key >CFBundleIdentifier </key >
88 <string >org.mujoco.mjpython </string >
99 <key >CFBundleVersion </key >
10- <string >2.3.2 </string >
10+ <string >2.3.3 </string >
1111 <key >CFBundleGetInfoString </key >
12- <string >2.3.2 </string >
12+ <string >2.3.3 </string >
1313 <key >CFBundleLongVersionString </key >
14- <string >2.3.2 </string >
14+ <string >2.3.3 </string >
1515 <key >CFBundleShortVersionString </key >
16- <string >2.3.2 </string >
16+ <string >2.3.3 </string >
1717 <key >CFBundleExecutable </key >
1818 <string >mjpython </string >
1919 <key >CFBundleIconFile </key >
Original file line number Diff line number Diff line change 3232from setuptools .command import build_ext
3333from setuptools .command import install_scripts
3434
35- __version__ = '2.3.2 '
35+ __version__ = '2.3.3 '
3636
3737MUJOCO_CMAKE = 'MUJOCO_CMAKE'
3838MUJOCO_CMAKE_ARGS = 'MUJOCO_CMAKE_ARGS'
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ set(MSVC_INCREMENTAL_DEFAULT ON)
2424
2525project (
2626 mujoco_samples
27- VERSION 2.3.2
27+ VERSION 2.3.3
2828 DESCRIPTION "MuJoCo samples binaries"
2929 HOMEPAGE_URL "https://mujoco.org"
3030)
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ set(MUJOCO_DEP_VERSION_lodepng
2929
3030project (
3131 mujoco_simulate
32- VERSION 2.3.2
32+ VERSION 2.3.3
3333 DESCRIPTION "MuJoCo simulate binaries"
3434 HOMEPAGE_URL "https://mujoco.org"
3535)
You can’t perform that action at this time.
0 commit comments