Prep for release 0.2.5.

This commit is contained in:
John McNamara 2015-12-14 00:02:51 +00:00
parent f01cd13065
commit ed4c79787d
5 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,12 @@
@page changes Changes
## 0.2.5 December 14 2015
- Added `workbook_set_properties()` function to set Excel document properties
such as Author and Title. See the @ref doc_properties.c example.
## 0.2.4 December 13 2015
- Added `worksheet_hide()` function to hide a worksheet. See the @ref

View File

@ -91,6 +91,7 @@ coverity:
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)aspell --lang=en_US --check Changes.txt
$(Q)aspell --lang=en_US --check Readme.md

View File

@ -205,6 +205,7 @@ function check_git_status {
echo
echo -e "Please fix git status.\n";
echo -e "\ngit add -u";
git tag -l -n1 | tail -1 | perl -lane 'printf "git commit -m \"Prep for release %s\"\ngit tag \"%s\"\n\n", $F[4], $F[0]' | perl dev/release/update_revison.pl
exit 1
fi

View File

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

View File

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