mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 0.2.5.
This commit is contained in:
parent
f01cd13065
commit
ed4c79787d
@ -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
|
||||
|
1
Makefile
1
Makefile
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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__ */
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user