##// END OF EJS Templates
Bump version to 2.1.1...
Miikka Heikkinen -
r2877:35b800491709
parent child
Show More
@@ -0,0 +1,8
1 Qt Charts 2.1.1
2
3 Fixed issues
4 ------------
5 - Fixed crash with empty BarSet values
6 - Fixed model resetting with model mapper
7 - Fixed crash when axis range is infinite
8 - Fixed clearing the chart title
@@ -1,4 +1,4
1 1 load(qt_build_config)
2 2 CONFIG += qt_example_installs
3 3
4 MODULE_VERSION=2.1.0
4 MODULE_VERSION=2.1.1
@@ -1,5 +1,5
1 1 ---------------
2 Qt Charts 2.1.0
2 Qt Charts 2.1.1
3 3 ---------------
4 4
5 5 Qt Charts module provides a set of easy to use chart components. It uses
@@ -24,11 +24,11
24 24
25 25 #include <QtCore/QtGlobal>
26 26
27 #define QT_CHARTS_VERSION_STR "2.1.0"
27 #define QT_CHARTS_VERSION_STR "2.1.1"
28 28 /*
29 29 QT_CHARTS_VERSION is (major << 16) + (minor << 8) + patch.
30 30 */
31 #define QT_CHARTS_VERSION 0x020100
31 #define QT_CHARTS_VERSION 0x020101
32 32 /*
33 33 can be used like #if (QT_CHARTS_VERSION >= QT_CHARTS_VERSION_CHECK(1, 1, 0))
34 34 */
General Comments 0
You need to be logged in to leave comments. Login now