Skip to content

Commit f9fa2a2

Browse files
Changes for release of version 0.7.1
1 parent 3c31107 commit f9fa2a2

File tree

161 files changed

+169
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+169
-162
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Release Candidate
3+
## Version 0.7.1 (July 01, 2019)
44

55
### Added
66

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES PUBLIC_HEADER "${REACTPHYSICS3D_
256256

257257
# Version number and soname for the library
258258
SET_TARGET_PROPERTIES(reactphysics3d PROPERTIES
259-
VERSION "0.7.0"
259+
VERSION "0.7.1"
260260
SOVERSION "0.7"
261261
)
262262

GenerateNewVersion.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# This is a Python script that can be called when creating a new release version of the library.
2+
# This script will automatically update some string with the new version number in the code and documentation.
3+
14
# ----- Imports ----- #
25
import os
36
import fnmatch
@@ -38,12 +41,16 @@ def findReplaceText(directory, findRegex, substituteExpr, filePattern):
3841

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

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

50+
# Update the RP3D version number in the src/reactphysics3d.h file
51+
findReplaceText("src/", r'(\* Version[ \t]+)[\d\.]+', r'\g<1>' + newVersion, "reactphysics3d.h")
52+
print("Version number has been updated in src/reactphysics3d.h file")
53+
4754
# Update the copyright date in LICENSE file
4855
findReplaceText("./", '(Copyright ' + re.escape("(c)") + r' 2010-)[\d]+', r'\g<1>' + str(date.today().year), "LICENSE")
4956
print("Copyright date has been updated in LICENSE file")

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2010-2018 Daniel Chappuis http://www.reactphysics3d.com
1+
Copyright (c) 2010-2019 Daniel Chappuis http://www.reactphysics3d.com
22

33
This software is provided 'as-is', without any express or implied
44
warranty. In no event will the authors be held liable for any damages

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.7.1

documentation/API/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "ReactPhysics3D"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = "0.7.0"
35+
PROJECT_NUMBER = "0.7.1"
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer
-56 KB
Binary file not shown.

documentation/UserManual/title.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
\vskip 1.3cm
1111
{\Huge \@title\par}%
1212
\vskip 0.3cm
13-
{\Large Version: 0.7.0\par}%
13+
{\Large Version: 0.7.1\par}%
1414
\vskip 0.3cm
1515
{\Large \@author\par}%
1616
\vskip 2cm

src/body/Body.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/********************************************************************************
22
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
3-
* Copyright (c) 2010-2018 Daniel Chappuis *
3+
* Copyright (c) 2010-2019 Daniel Chappuis *
44
*********************************************************************************
55
* *
66
* This software is provided 'as-is', without any express or implied warranty. *

src/body/Body.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/********************************************************************************
22
* ReactPhysics3D physics library, http://www.reactphysics3d.com *
3-
* Copyright (c) 2010-2018 Daniel Chappuis *
3+
* Copyright (c) 2010-2019 Daniel Chappuis *
44
*********************************************************************************
55
* *
66
* This software is provided 'as-is', without any express or implied warranty. *

0 commit comments

Comments
 (0)