From 35b800491709bafb58c3c8e29f953954f2a7897a 2016-04-05 08:40:15 From: Miikka Heikkinen Date: 2016-04-05 08:40:15 Subject: [PATCH] Bump version to 2.1.1 Change-Id: If426ff4b1278b28afc7406fb42a7a6ad34aa725a Reviewed-by: Tomi Korpipää Reviewed-by: Miikka Heikkinen --- diff --git a/.qmake.conf b/.qmake.conf index 0770559..b68682f 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -1,4 +1,4 @@ load(qt_build_config) CONFIG += qt_example_installs -MODULE_VERSION=2.1.0 +MODULE_VERSION=2.1.1 diff --git a/README b/README index ac6c27e..59fb146 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ --------------- -Qt Charts 2.1.0 +Qt Charts 2.1.1 --------------- Qt Charts module provides a set of easy to use chart components. It uses diff --git a/dist/changes-2.1.1 b/dist/changes-2.1.1 new file mode 100644 index 0000000..caa3b1a --- /dev/null +++ b/dist/changes-2.1.1 @@ -0,0 +1,8 @@ +Qt Charts 2.1.1 + +Fixed issues +------------ +- Fixed crash with empty BarSet values +- Fixed model resetting with model mapper +- Fixed crash when axis range is infinite +- Fixed clearing the chart title diff --git a/src/charts/qchartglobal.h b/src/charts/qchartglobal.h index 5c082d8..2f6e35a 100644 --- a/src/charts/qchartglobal.h +++ b/src/charts/qchartglobal.h @@ -24,11 +24,11 @@ #include -#define QT_CHARTS_VERSION_STR "2.1.0" +#define QT_CHARTS_VERSION_STR "2.1.1" /* QT_CHARTS_VERSION is (major << 16) + (minor << 8) + patch. */ -#define QT_CHARTS_VERSION 0x020100 +#define QT_CHARTS_VERSION 0x020101 /* can be used like #if (QT_CHARTS_VERSION >= QT_CHARTS_VERSION_CHECK(1, 1, 0)) */