From 6d72cb187d7a267700bf1b820918a74862ababf5 Mon Sep 17 00:00:00 2001 From: John McNamara Date: Mon, 6 Apr 2015 23:55:40 +0100 Subject: [PATCH] Prep for release 0.0.6. --- Changes.txt | 6 ++++++ include/xlsxwriter.h | 4 ++-- include/xlsxwriter/workbook.h | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Changes.txt b/Changes.txt index 14bb041c..a93e4db3 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,6 +2,12 @@ @page changes Changes +## 0.0.6 March 5 2015 + +- Added the `workbook_define_name()` method to create defined names and ranges + in a workbook or worksheet. + + ## 0.0.5 March 6 2015 - Added `worksheet_select()` function to set worksheets as selected. diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index bd22b35b..475d49f4 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -1,6 +1,6 @@ /* * libxlsxwriter - * + * * Copyright 2014-2015, John McNamara, jmcnamara@cpan.org. See LICENSE.txt. */ @@ -18,6 +18,6 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "0.0.5" +#define LXW_VERSION "0.0.6" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/include/xlsxwriter/workbook.h b/include/xlsxwriter/workbook.h index ea320164..146ba536 100644 --- a/include/xlsxwriter/workbook.h +++ b/include/xlsxwriter/workbook.h @@ -295,7 +295,7 @@ uint8_t workbook_close(lxw_workbook *workbook); * worksheet_write_formula(worksheet, 2, 1, "=Exchange_rate", NULL); * * @endcode - * + * * @image html defined_name.png * * As in Excel a name defined like this is "global" to the workbook and can be @@ -321,7 +321,7 @@ uint8_t workbook_close(lxw_workbook *workbook); * workbook_define_name(workbook, "'New Data'!Sales", "=Sheet2!$G$1:$G$10"); * @endcode * - * The rules for names in Excel are explained in the + * The rules for names in Excel are explained in the * [Miscrosoft Office documentation](http://office.microsoft.com/en-001/excel-help/define-and-use-names-in-formulas-HA010147120.aspx). *