Prep for release 0.8.0.

This commit is contained in:
John McNamara 2018-09-11 22:50:29 +01:00
parent 8672666b74
commit f52e816717
4 changed files with 10 additions and 2 deletions

View file

@ -2,6 +2,13 @@
@page changes Changes
## 0.8.0 September 12 2018
- Added chartsheet support. A chartsheet is a type of worksheet that only
contains a chart. See the @ref chartsheet.h "Chartsheet" object and @ref
chartsheet.c.
## 0.7.9 September 1 2018
- Added `chart_axis_set_label_align()` function to set the alignment of chart

View file

@ -3,6 +3,7 @@
#import "../xlsxwriter.h"
#import "app.h"
#import "chart.h"
#import "chartsheet.h"
#import "common.h"
#import "content_types.h"
#import "core.h"

View file

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

View file

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