Skip to content

Commit

Permalink
Prep for release 0.0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Apr 6, 2015
1 parent be3745e commit 6d72cb1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* libxlsxwriter
*
*
* Copyright 2014-2015, John McNamara, [email protected]. See LICENSE.txt.
*/

Expand All @@ -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__ */
4 changes: 2 additions & 2 deletions include/xlsxwriter/workbook.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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).
*
Expand Down

0 comments on commit 6d72cb1

Please sign in to comment.