Prep for release 0.1.9.

This commit is contained in:
John McNamara 2015-12-07 21:09:22 +00:00
parent 29b3a0de0b
commit a8c6629258
4 changed files with 17 additions and 7 deletions

View File

@ -1,17 +1,27 @@
/**
@page changes Changes
## 0.1.9 December 7 2015
- Replaced main worksheet data structure with a Red/Black tree implementation
for better performance when data isn't added in linear row-column order.
Thanks to Martin Renters. Pull Request [#14][gh_14] and [#16][gh_16].
[gh_14]: https://github.com/jmcnamara/libxlsxwriter/issues/14
[gh_16]: https://github.com/jmcnamara/libxlsxwriter/issues/16
## 0.1.8 December 7 2015
- Added `worksheet_freeze_panes()` and `worksheet_split_panes()` to allow
setting worksheet panes. See @ref panes.c example.
- Added [link to Xcode
project](https://github.com/lrossi/libxlsxwriterCocoaExamples) for iOS and
OS X with Objective-C and Swift, provided by Ludovico Rossi.
- Added link to [Xcode project][libxlsxwriterCocoaExamples] for iOS and OS X
with Objective-C and Swift, provided by Ludovico Rossi.
- Added improved support for Windows.
[libxlsxwriterCocoaExamples]: https://github.com/lrossi/libxlsxwriterCocoaExamples
## 0.1.7 September 27 2015

4
dev/release/release_check.sh Normal file → Executable file
View File

@ -19,7 +19,7 @@ function check_test_status {
if [ "$RESPONSE" != "y" ]; then
echo -n " Run all tests now? [y/N]: "
echo -n " Run all tests now? [y/N]: "
read RESPONSE
if [ "$RESPONSE" != "y" ]; then
@ -74,7 +74,7 @@ function check_versions {
read RESPONSE
if [ "$RESPONSE" != "y" ]; then
echo -n " Update versions? [y/N]: "
echo -n " Update versions? [y/N]: "
read RESPONSE
if [ "$RESPONSE" != "y" ]; then

View File

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

View File

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