summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@theqtcompany.com>2015-04-23 14:23:18 +0300
committerTitta Heikkala <titta.heikkala@theqtcompany.com>2015-04-23 14:36:40 +0300
commitc6eddd6a7ac5a67f77f52eae3a074c85fbf525a9 (patch)
tree9ff64fd1b1b7b4a3081e09e81595eac9eca03169
parentbc1f6aa59d423d1069eb732c165838a0a33b1daf (diff)
Add dist file for 2.0.1 and change version numbersrelease-2.0.1
Change-Id: I52f227c2e52e29f4af392b320b58791a1697e85f Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com>
-rw-r--r--README2
-rw-r--r--dist/changes-2.0.110
-rw-r--r--src/charts/doc/qtcharts.qdocconf10
-rw-r--r--src/charts/qchartglobal.h4
4 files changed, 18 insertions, 8 deletions
diff --git a/README b/README
index 4f24c5df..d553fb85 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
---------------
-Qt Charts 2.0.0
+Qt Charts 2.0.1
---------------
Qt Charts module provides a set of easy to use chart components. It uses
diff --git a/dist/changes-2.0.1 b/dist/changes-2.0.1
new file mode 100644
index 00000000..4e0c6737
--- /dev/null
+++ b/dist/changes-2.0.1
@@ -0,0 +1,10 @@
+Qt Charts 2.0.1
+
+Fixed issues
+------------
+- Fixed animation crash
+- Fixed QBarSet label color setting
+- Fixed bar series zoom out
+- Fixed documentation issues
+- Fixed QML XYSeries::insert exception
+- Fixed model mapper modelReset signal handling
diff --git a/src/charts/doc/qtcharts.qdocconf b/src/charts/doc/qtcharts.qdocconf
index df93705e..275c25b9 100644
--- a/src/charts/doc/qtcharts.qdocconf
+++ b/src/charts/doc/qtcharts.qdocconf
@@ -6,7 +6,7 @@ include($QT_INSTALL_DOCS/global/qt-html-templates-offline.qdocconf)
project = QtCharts
description = Qt Charts Reference Documentation
-version = 2.0.0
+version = 2.0.1
sourcedirs += .. \
../../chartsqml2
@@ -32,14 +32,14 @@ Cpp.ignoretokens = Q_INVOKABLE \
qhp.projects = QtCharts
qhp.QtCharts.file = qtcharts.qhp
-qhp.QtCharts.namespace = com.digia.qtcharts.200
+qhp.QtCharts.namespace = com.digia.qtcharts.201
qhp.QtCharts.virtualFolder = qtcharts
qhp.QtCharts.indexTitle = Qt Charts
qhp.QtCharts.indexRoot =
-qhp.QtCharts.filterAttributes = qtcharts 2.0.0 qtrefdoc
-qhp.QtCharts.customFilters.Qt.name = QtCharts 2.0.0
-qhp.QtCharts.customFilters.Qt.filterAttributes = qtcharts 2.0.0
+qhp.QtCharts.filterAttributes = qtcharts 2.0.1 qtrefdoc
+qhp.QtCharts.customFilters.Qt.name = QtCharts 2.0.1
+qhp.QtCharts.customFilters.Qt.filterAttributes = qtcharts 2.0.1
qhp.QtCharts.subprojects = gettingstarted classes types examples
diff --git a/src/charts/qchartglobal.h b/src/charts/qchartglobal.h
index dd4e456a..012dbc6c 100644
--- a/src/charts/qchartglobal.h
+++ b/src/charts/qchartglobal.h
@@ -21,11 +21,11 @@
#include <QtCore/QtGlobal>
-#define QT_CHARTS_VERSION_STR "2.0.0"
+#define QT_CHARTS_VERSION_STR "2.0.1"
/*
QT_CHARTS_VERSION is (major << 16) + (minor << 8) + patch.
*/
-#define QT_CHARTS_VERSION 0x020000
+#define QT_CHARTS_VERSION 0x020001
/*
can be used like #if (QT_CHARTS_VERSION >= QT_CHARTS_VERSION_CHECK(1, 1, 0))
*/