Prep for release 0.4.9.

This commit is contained in:
John McNamara 2017-01-04 00:04:33 +00:00
parent 0945bede76
commit 66e30c3a89
4 changed files with 8 additions and 3 deletions

View File

@ -2,6 +2,11 @@
@page changes Changes
## 0.4.9 January 4 2017
- Added support for chart patterns. See @ref chart_patterns.
## 0.4.8 January 3 2017
- Added support for chart markers. See @ref chart_markers.

View File

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

View File

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

View File

@ -117,7 +117,7 @@ test_compile : $(OBJS)
$(Q)$(CC) $(FPIC) -I$(INC_DIR) $(CFLAGS) $(CXXFLAGS) -c $< -o $@
%.to : %.c $(HDRS)
$(Q)$(CC) -g -O0 -DTESTING -I$(INC_DIR) $(CFLAGS) $(CXXFLAGS) -c $< -o $@
$(Q)$(CC) -g -O3 -DTESTING -I$(INC_DIR) $(CFLAGS) $(CXXFLAGS) -c $< -o $@
# Clean up any temp/build files.