From 50150618282c92dc3aca79eabce689ff6540b435 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Fri, 30 Dec 2016 12:00:17 +0000 Subject: [PATCH] Prep for release 0.4.4. --- Changes.txt | 6 ++++++ dev/release/release_check.sh | 2 +- docs/src/working_with_charts.dox | 2 +- include/xlsxwriter.h | 2 +- include/xlsxwriter/chart.h | 6 +++--- libxlsxwriter.podspec | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Changes.txt b/Changes.txt index eb5baa07..8e7d3b79 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,12 @@ /** @page changes Changes +## 0.4.4 December 30 2016 + +- Added chart fonts. See `chart_axis_set_name_font()`, `chart_axis_set_num_font()`, + `chart_title_set_name_font()` and @ref chart_fonts. + + ## 0.4.3 December 26 2016 - Added `workbook_get_worksheet_by_name()` function to get a worksheet diff --git a/dev/release/release_check.sh b/dev/release/release_check.sh index 61e8f60c..6690f6bd 100755 --- a/dev/release/release_check.sh +++ b/dev/release/release_check.sh @@ -198,7 +198,7 @@ function check_pod_spec { else echo " Running lint..."; pod spec lint libxlsxwriter.podspec --use-libraries - Check_pod_spec + check_pod_spec fi fi } diff --git a/docs/src/working_with_charts.dox b/docs/src/working_with_charts.dox index efb93eb3..fb6fc1a6 100644 --- a/docs/src/working_with_charts.dox +++ b/docs/src/working_with_charts.dox @@ -25,7 +25,7 @@ axis, some can be set for a category axis and some properties can be set for both. The documentation calls out the type of axis to which functions apply. -@section chart_fonts Chart Fonts +@section chart_fonts Working with Chart Fonts Font properties can be set for several chart objects such as chart titles, axis labels, and axis numbering. diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 9a57e212..0b0dec00 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.4.3" +#define LXW_VERSION "0.4.4" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/include/xlsxwriter/chart.h b/include/xlsxwriter/chart.h index 979e35cf..3c25c604 100644 --- a/include/xlsxwriter/chart.h +++ b/include/xlsxwriter/chart.h @@ -638,7 +638,7 @@ void chart_axis_set_name_range(lxw_chart_axis *axis, const char *sheetname, * * @image html chart_axis_set_name_font.png * - * For more information about working with chart fonts see @ref chart_fonts. + * For more information see @ref chart_fonts. */ void chart_axis_set_name_font(lxw_chart_axis *axis, lxw_chart_font *font); @@ -659,7 +659,7 @@ void chart_axis_set_name_font(lxw_chart_axis *axis, lxw_chart_font *font); * * @image html chart_axis_set_num_font.png * - * For more information about working with chart fonts see @ref chart_fonts. + * For more information see @ref chart_fonts. */ void chart_axis_set_num_font(lxw_chart_axis *axis, lxw_chart_font *font); @@ -729,7 +729,7 @@ void chart_title_set_name_range(lxw_chart *chart, const char *sheetname, * * @image html chart_title_set_name_font.png * - * For more information about working with chart fonts see @ref chart_fonts. + * For more information see @ref chart_fonts. */ void chart_title_set_name_font(lxw_chart *chart, lxw_chart_font *font); diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 23cff1d8..f87422c1 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.4.3" + s.version = "0.4.4" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"