diff --git a/Changes.txt b/Changes.txt index ad786e38..f5c984a4 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,6 +2,11 @@ @page changes Changes +## 0.6.7 January 24 2017 + +- Added chart data labels. See @ref chart_labels. + + ## 0.6.6 January 22 2017 - Added functions to set chart Up-Down bars: see `chart_set_up_down_bars()` diff --git a/examples/chart_data_tools.c b/examples/chart_data_tools.c index 74110394..fb70aa95 100644 --- a/examples/chart_data_tools.c +++ b/examples/chart_data_tools.c @@ -146,7 +146,7 @@ int main() { /* Add series markers. */ chart_series_set_marker_type(series, LXW_CHART_MARKER_CIRCLE); - /* Add sereis data labels. */ + /* Add series data labels. */ chart_series_set_labels(series); /* Insert the chart into the worksheet. */ diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index ac6a9210..07680cfb 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -18,6 +18,6 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "0.6.6" +#define LXW_VERSION "0.6.7" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 2253be2b..5c1118a3 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.6.6" + s.version = "0.6.7" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"