Skip to content

Commit 9c740e8

Browse files
committed
setting the version to 7.1.0
1 parent 50daa32 commit 9c740e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include(CTest)
2121
################################
2222
# set lib version here
2323

24-
set(GENERIC_LIB_VERSION "7.0.1")
24+
set(GENERIC_LIB_VERSION "7.1.0")
2525
set(GENERIC_LIB_SOVERSION "7")
2626

2727
################################

dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "TinyXML-2"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 7.0.1
41+
PROJECT_NUMBER = 7.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

tinyxml2.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ distribution.
9999
http://semver.org/
100100
*/
101101
static const int TIXML2_MAJOR_VERSION = 7;
102-
static const int TIXML2_MINOR_VERSION = 0;
103-
static const int TIXML2_PATCH_VERSION = 1;
102+
static const int TIXML2_MINOR_VERSION = 1;
103+
static const int TIXML2_PATCH_VERSION = 0;
104104

105105
#define TINYXML2_MAJOR_VERSION 7
106-
#define TINYXML2_MINOR_VERSION 0
107-
#define TINYXML2_PATCH_VERSION 1
106+
#define TINYXML2_MINOR_VERSION 1
107+
#define TINYXML2_PATCH_VERSION 0
108108

109109
// A fixed element depth limit is problematic. There needs to be a
110110
// limit to avoid a stack overflow. However, that limit varies per

0 commit comments

Comments
 (0)