summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--README2
-rw-r--r--dist/changes-2.1.18
-rw-r--r--src/charts/qchartglobal.h4
4 files changed, 12 insertions, 4 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 07705596..b68682fe 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 ac6c27ef..59fb1467 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 00000000..caa3b1a1
--- /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 5c082d84..2f6e35a2 100644
--- a/src/charts/qchartglobal.h
+++ b/src/charts/qchartglobal.h
@@ -24,11 +24,11 @@
#include <QtCore/QtGlobal>
-#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))
*/