Skip to content

Commit

Permalink
Changes for release of version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielChappuis committed Jul 1, 2019
1 parent 3c31107 commit f9fa2a2
Show file tree
Hide file tree
Showing 161 changed files with 169 additions and 162 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Release Candidate
## Version 0.7.1 (July 01, 2019)

### Added

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES PUBLIC_HEADER "${REACTPHYSICS3D_

# Version number and soname for the library
SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES
VERSION "0.7.0"
VERSION "0.7.1"
SOVERSION "0.7"
)

Expand Down
9 changes: 8 additions & 1 deletion GenerateNewVersion.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This is a Python script that can be called when creating a new release version of the library.
# This script will automatically update some string with the new version number in the code and documentation.

# ----- Imports ----- #
import os
import fnmatch
Expand Down Expand Up @@ -38,12 +41,16 @@ def findReplaceText(directory, findRegex, substituteExpr, filePattern):

# Update the RP3D version number in the documentation/UserManual/title.tex file
findReplaceText("documentation/UserManual/", r'(Version:[\s]+)[\d\.]+', r'\g<1>' + newVersion, "title.tex")
print("Version number has been updated in documentation/API/Doxyfile file")
print("Version number has been updated in documentation/UserManual/title.tex file")

# Update the RP3D version number in the src/configuration.h file
findReplaceText("src/", r'(RP3D_VERSION[ \t]+=[ \t]+std::string\()"[\d\.]+"', r'\g<1>"' + newVersion + '"', "configuration.h")
print("Version number has been updated in src/configuration.h file")

# Update the RP3D version number in the src/reactphysics3d.h file
findReplaceText("src/", r'(\* Version[ \t]+)[\d\.]+', r'\g<1>' + newVersion, "reactphysics3d.h")
print("Version number has been updated in src/reactphysics3d.h file")

# Update the copyright date in LICENSE file
findReplaceText("./", '(Copyright ' + re.escape("(c)") + r' 2010-)[\d]+', r'\g<1>' + str(date.today().year), "LICENSE")
print("Copyright date has been updated in LICENSE file")
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2018 Daniel Chappuis http://www.reactphysics3d.com
Copyright (c) 2010-2019 Daniel Chappuis http://www.reactphysics3d.com

This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.7.1
2 changes: 1 addition & 1 deletion documentation/API/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = "ReactPhysics3D"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = "0.7.0"
PROJECT_NUMBER = "0.7.1"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
Binary file modified documentation/UserManual/ReactPhysics3D-UserManual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion documentation/UserManual/title.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
\vskip 1.3cm
{\Huge \@title\par}%
\vskip 0.3cm
{\Large Version: 0.7.0\par}%
{\Large Version: 0.7.1\par}%
\vskip 0.3cm
{\Large \@author\par}%
\vskip 2cm
Expand Down
2 changes: 1 addition & 1 deletion src/body/Body.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/body/Body.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/body/CollisionBody.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/body/CollisionBody.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/body/RigidBody.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/body/RigidBody.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/CollisionCallback.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/CollisionCallback.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/CollisionDetection.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/CollisionDetection.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifold.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifold.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifoldInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifoldInfo.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifoldSet.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactManifoldSet.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ContactPointInfo.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/HalfEdgeStructure.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/HalfEdgeStructure.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/MiddlePhaseTriangleCallback.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/MiddlePhaseTriangleCallback.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/NarrowPhaseInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/NarrowPhaseInfo.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/OverlapCallback.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/PolygonVertexArray.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/PolygonVertexArray.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/PolyhedronMesh.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/PolyhedronMesh.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
2 changes: 1 addition & 1 deletion src/collision/ProxyShape.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
* Copyright (c) 2010-2018 Daniel Chappuis *
* Copyright (c) 2010-2019 Daniel Chappuis *
*********************************************************************************
* *
* This software is provided 'as-is', without any express or implied warranty. *
Expand Down
Loading

0 comments on commit f9fa2a2

Please sign in to comment.