Prep for release 0.2.7.

This commit is contained in:
John McNamara 2015-12-21 10:19:55 +00:00
parent a29143df2c
commit 1ce5eafb76
3 changed files with 13 additions and 3 deletions

View File

@ -2,9 +2,19 @@
@page changes Changes
## 0.2.7 December 21 2015
- Added support for escaping control characters in strings. This prevents
unreadable files if string data contains control characters.
Issue [#42][gh_42].
[gh_42]: https://github.com/jmcnamara/libxlsxwriter/issues/42
## 0.2.6 December 19 2015
- Added `worksheet_protect()` function to protecdt Excel worksheet elements
- Added `worksheet_protect()` function to protect Excel worksheet elements
from modification. See the @ref worksheet_protection.c example.

View File

@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.2.6"
#define LXW_VERSION "0.2.7"
#endif /* __LXW_XLSXWRITER_H__ */

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.2.6"
s.version = "0.2.7"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"