bump up PyBullet and Bullet version to 3.05 (in sync for this release)

This commit is contained in:
Erwin Coumans
2020-09-24 10:11:37 -07:00
parent 3d220888fa
commit e454b90c5b
5 changed files with 6 additions and 7 deletions

View File

@@ -760,7 +760,6 @@ typedef struct bInvalidHandle {
int m_restingContactRestitutionThreshold;
int m_minimumSolverBatchSize;
int m_splitImpulse;
char m_padding[4];
};

View File

@@ -1 +1 @@
2.90
3.05

View File

@@ -501,7 +501,7 @@ if 'BT_USE_EGL' in EGL_CXX_FLAGS:
setup(
name='pybullet',
version='3.0.4',
version='3.0.5',
description=
'Official Python Interface for the Bullet Physics SDK specialized for Robotics Simulation and Reinforcement Learning',
long_description=

View File

@@ -25,7 +25,7 @@ subject to the following restrictions:
#include <float.h>
/* SVN $Revision$ on $Date$ from http://bullet.googlecode.com*/
#define BT_BULLET_VERSION 290
#define BT_BULLET_VERSION 305
inline int btGetVersion()
{

View File

@@ -479,9 +479,9 @@ public:
buffer[8] = 'V';
}
buffer[9] = '2';
buffer[10] = '9';
buffer[11] = '0';
buffer[9] = '3';
buffer[10] = '0';
buffer[11] = '5';
}
virtual void startSerialization()