Prep for release 0.5.9.

This commit is contained in:
John McNamara 2017-01-14 01:01:05 +00:00
parent 3058df2b1c
commit f899f7c225
4 changed files with 14 additions and 4 deletions

View File

@ -1,6 +1,13 @@
/**
@page changes Changes
## 0.5.9 January 14 2017
- Added support for chart axis crossing. See `chart_axis_set_crossing()` and
`chart_axis_set_crossing_max()`.
## 0.5.8 January 13 2017
- Added `chart_axis_set_major_tick_mark()` and

View File

@ -9,7 +9,8 @@ Libxlsxwriter: A C library for creating Excel XLSX files.
## The libxlsxwriter library
Libxlsxwriter is a C library that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
Libxlsxwriter is a C library that can be used to write text, numbers, formulas
and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
It supports features such as:
@ -72,4 +73,6 @@ int main() {
See the [full documentation](http://libxlsxwriter.github.io) for the getting started guide, a tutorial, the main API documentation and examples.
See the [full documentation](http://libxlsxwriter.github.io) for the getting
started guide, a tutorial, the main API documentation and examples.

View File

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

View File

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