diff --git a/Changes.txt b/Changes.txt index 8ad1a974..beb93400 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,6 +2,12 @@ @page changes Changes +## 0.6.9 January 30 2017 + +- Added chart trendlines. See @ref chart_trendlines and + @ref chart_data_tools.c. + + ## 0.6.8 January 28 2017 - Added chart error bars. See @ref chart_error_bars and diff --git a/docs/src/examples.dox b/docs/src/examples.dox index c5a166f9..1e1151a0 100644 --- a/docs/src/examples.dox +++ b/docs/src/examples.dox @@ -732,7 +732,7 @@ Chart 5: chart with markers and data labels. Chart 6: chart with error bars. @image html chart_data_tools3.png -Chart 7: chart with a trendlines. +Chart 7: chart with a trendline. @image html chart_data_tools9.png diff --git a/docs/src/examples.txt b/docs/src/examples.txt index ebf9e570..75542981 100644 --- a/docs/src/examples.txt +++ b/docs/src/examples.txt @@ -381,7 +381,7 @@ Chart 5: chart with markers and data labels. Chart 6: chart with error bars. @image html chart_data_tools3.png -Chart 7: chart with a trenlines. +Chart 7: chart with a trendline. @image html chart_data_tools9.png diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index f33a2a10..a5956cbc 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.8" +#define LXW_VERSION "0.6.9" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index d822caa7..34f7a184 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.6.8" + s.version = "0.6.9" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"