Skip to content

Commit 6344272

Browse files
Change version number
1 parent 179a07b commit 6344272

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

GenerateNewVersion.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ def findReplaceText(directory, findRegex, substituteExpr, filePattern):
4040
findReplaceText("./", r'([ \t]VERSION[ \t]+)"[\d\.]+"', r'\g<1>"' + newVersion + '"', "CMakeLists.txt")
4141
print("Version number has been updated in CMakeLists.txt file")
4242

43-
# Update the RP3D version number in the documentation/API/Doxyfile file
44-
findReplaceText("documentation/API/", r'(PROJECT_NUMBER[ \t]+=[ \t]+)"[\d\.]+"', r'\g<1>"' + newVersion + '"', "Doxyfile")
45-
print("Version number has been updated in documentation/API/Doxyfile file")
46-
4743
# Update the RP3D version number in the documentation/UserManual/title.tex file
4844
findReplaceText("documentation/UserManual/", r'(Version:[\s]+)[\d\.]+', r'\g<1>' + newVersion, "title.tex")
4945
print("Version number has been updated in documentation/UserManual/title.tex file")
@@ -64,5 +60,3 @@ def findReplaceText(directory, findRegex, substituteExpr, filePattern):
6460
findReplaceText("include/", '(Copyright ' + re.escape("(c)") + r' 2010-)[\d]+', r'\g<1>' + str(date.today().year), "*.h")
6561
findReplaceText("src/", '(Copyright ' + re.escape("(c)") + r' 2010-)[\d]+', r'\g<1>' + str(date.today().year), "*.cpp")
6662
print("Copyright date in license has been updated in all source code files")
67-
68-
print("WARNING: Do not forget to manually update the SOVERSION number in the CMakeLists.txt file")

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.10.1

include/reactphysics3d/configuration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ constexpr decimal SAME_CONTACT_POINT_DISTANCE_THRESHOLD = decimal(0.01);
149149
constexpr uint8 GLOBAL_ALIGNMENT = 16;
150150

151151
/// Current version of ReactPhysics3D
152-
const std::string RP3D_VERSION = std::string("0.10.0");
152+
const std::string RP3D_VERSION = std::string("0.10.1");
153153

154154
}
155155

include/reactphysics3d/reactphysics3d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/********************************************************************************
2828
* ReactPhysics3D *
29-
* Version 0.10.0 *
29+
* Version 0.10.1 *
3030
* http://www.reactphysics3d.com *
3131
* Daniel Chappuis *
3232
********************************************************************************/

0 commit comments

Comments
 (0)