Skip to content

Commit

Permalink
Prep for release 0.3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Apr 7, 2016
1 parent 3ef9440 commit adf5529
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
/**
@page changes Changes

## 0.3.2 April 8 2016

- Added the `worksheet_write_boolean()` function to write Excel boolean
values.
Feature request [#47][gh_47].

[gh_47]: https://github.com/jmcnamara/libxlsxwriter/issues/47


## 0.3.1 January 9 2016

- Improved performance 20-30% for large data files.
Expand Down
2 changes: 1 addition & 1 deletion include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"

#define LXW_VERSION "0.3.1"
#define LXW_VERSION "0.3.2"

#endif /* __LXW_XLSXWRITER_H__ */
6 changes: 3 additions & 3 deletions include/xlsxwriter/worksheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ int8_t worksheet_write_url(lxw_worksheet *worksheet,
lxw_format *format);

/**
* @brief Write a formatted blank worksheet cell.
* @brief Write a formatted boolean worksheet cell.
*
* @param worksheet pointer to a lxw_worksheet instance to be updated.
* @param row The zero indexed row number.
Expand All @@ -936,7 +936,7 @@ int8_t worksheet_write_url(lxw_worksheet *worksheet,
* Write an Excel boolean to the cell specified by `row` and `column`:
*
* @code
* worksheet_write_boolean(worksheet, 1, 1, 0, my_format);
* worksheet_write_boolean(worksheet, 2, 2, 0, my_format);
* @endcode
*
*/
Expand All @@ -945,7 +945,7 @@ int8_t worksheet_write_boolean(lxw_worksheet *worksheet,
int value, lxw_format *format);

/**
* @brief Write a formatted boolean worksheet cell.
* @brief Write a formatted blank worksheet cell.
*
* @param worksheet pointer to a lxw_worksheet instance to be updated.
* @param row The zero indexed row number.
Expand Down
2 changes: 1 addition & 1 deletion libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.3.1"
s.version = "0.3.2"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
Expand Down

0 comments on commit adf5529

Please sign in to comment.