Skip to content

Commit 9148bdf

Browse files
committed
setting the version to 11.0.0
1 parent 57eea48 commit 9148bdf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(tinyxml2 VERSION 10.1.0)
2+
project(tinyxml2 VERSION 11.0.0)
33

44
include(CTest)
55
option(tinyxml2_BUILD_TESTING "Build tests for tinyxml2" "${BUILD_TESTING}")

dox

+1-1
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 = 10.1.0
41+
PROJECT_NUMBER = 11.0.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

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
project(
2323
'tinyxml2',
2424
['cpp'],
25-
version : '10.1.0',
25+
version : '11.0.0',
2626
meson_version : '>= 0.49.0',
2727
)
2828

tinyxml2.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ distribution.
9696
/* Versioning, past 1.0.14:
9797
http://semver.org/
9898
*/
99-
static const int TIXML2_MAJOR_VERSION = 10;
100-
static const int TIXML2_MINOR_VERSION = 1;
99+
static const int TIXML2_MAJOR_VERSION = 11;
100+
static const int TIXML2_MINOR_VERSION = 0;
101101
static const int TIXML2_PATCH_VERSION = 0;
102102

103-
#define TINYXML2_MAJOR_VERSION 10
104-
#define TINYXML2_MINOR_VERSION 1
103+
#define TINYXML2_MAJOR_VERSION 11
104+
#define TINYXML2_MINOR_VERSION 0
105105
#define TINYXML2_PATCH_VERSION 0
106106

107107
// A fixed element depth limit is problematic. There needs to be a

0 commit comments

Comments
 (0)