Prep for release 0.3.3.

This commit is contained in:
John McNamara 2016-05-23 23:09:03 +01:00
parent 11d26f7522
commit ad2d11f93b
5 changed files with 25 additions and 2 deletions

View file

@ -1,6 +1,26 @@
/**
@page changes Changes
## 0.3.3 April 23 2016
- Added support for charts via the @ref chart.h "The Chart object". See the
examples of the supported chart types:
- @ref chart_area.c "Area chart"
- @ref chart_bar.c "Bar chart"
- @ref chart_column.c "Column chart"
- @ref chart_line.c "Line chart"
- @ref chart_scatter.c "Scatter chart"
- @ref chart_radar.c "Radar chart"
- @ref chart_pie.c "Pie chart"
- @ref chart_doughnut.c "Doughnut chart"
- @ref chart_styles.c "Built-in charts styles"
Feature request [#36][gh_36].
[gh_36]: https://github.com/jmcnamara/libxlsxwriter/issues/36
## 0.3.2 April 8 2016
- Added the `worksheet_write_boolean()` function to write Excel boolean

View file

@ -92,6 +92,7 @@ spellcheck:
$(Q)for f in docs/src/*.dox; do aspell --lang=en_US --check $$f; done
$(Q)for f in include/xlsxwriter/*.h; do aspell --lang=en_US --check $$f; done
$(Q)for f in src/*.c; do aspell --lang=en_US --check $$f; done
$(Q)for f in examples/*.c; do aspell --lang=en_US --check $$f; done
$(Q)aspell --lang=en_US --check Changes.txt
$(Q)aspell --lang=en_US --check Readme.md

View file

@ -18,6 +18,7 @@ It supports features such as:
- Merged cells.
- Defined names.
- Autofilters.
- Charts.
- Worksheet PNG/JPEG images.
- Memory optimization mode for writing large files.
- Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).

View file

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

View file

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.3.2"
s.version = "0.3.3"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
@ -15,6 +15,7 @@ Pod::Spec.new do |s|
* Merged cells.
* Defined names.
* Autofilters.
* Charts.
* Worksheet PNG/JPEG images.
* Memory optimisation mode for writing large files.
* Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).