diff --git a/README b/README index 4f24c5d..d553fb8 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 0000000..4e0c673 --- /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 df93705..275c25b 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 dd4e456..012dbc6 100644 --- a/src/charts/qchartglobal.h +++ b/src/charts/qchartglobal.h @@ -21,11 +21,11 @@ #include -#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)) */