Prep for release 0.4.3.

This commit is contained in:
John McNamara 2016-12-26 13:26:40 +00:00
parent e7f6bed4e2
commit ee1bafa9bc
5 changed files with 55 additions and 11 deletions

View File

@ -1,12 +1,26 @@
/**
@page changes Changes
# 0.4.2 July 14 2016
## 0.4.3 December 26 2016
- Added `workbook_get_worksheet_by_name()` function to get a worksheet
object from its name.
- Added `workbook_validate_worksheet_name()` function to validate a worksheet
name.
- Fix for parameter length check when strings are UTF-8.
Issue [#84][gh_84].
[gh_84]: https://github.com/jmcnamara/libxlsxwriter/issues/84
## 0.4.2 July 14 2016
- Added support for OpenBSD and better support for FreeBSD. See @ref gsg_bsd.
# 0.4.1 July 11 2016
## 0.4.1 July 11 2016
- Switched to using
[tmpfileplus](http://www.di-mgt.com.au/c_function_to_create_temp_file.html)
@ -19,26 +33,26 @@
[gh_63]: https://github.com/jmcnamara/libxlsxwriter/issues/63
# 0.4.0 July 5 2016
## 0.4.0 July 5 2016
- Added fixes for MSVC 2010.
- Refactored public APIs to return #lxw_error instead of int.
# 0.3.9 July 2 2016
## 0.3.9 July 2 2016
- Added support for MinGW, MinGW-w64, Cygwin, MSYS and MSYS2.
See @ref gsg_ming.
# 0.3.8 June 11 2016
## 0.3.8 June 11 2016
- Added workbook functions to set custom document properties. See
`workbook_set_custom_property_string()` and @ref doc_custom_properties.c.
# 0.3.7 June 2 2016
## 0.3.7 June 2 2016
- Added updated Cocoapods file for Cocoapods 1.0.0. This also add support for
the "use_frameworks" directive. Thanks to Ludovico Rossi. See @ref

View File

@ -35,6 +35,34 @@ function check_test_status {
}
#############################################################
#
# Run spellcheck.
#
function check_spellcheck {
echo
echo -n "Is the spellcheck ok? [y/N]: "
read RESPONSE
if [ "$RESPONSE" != "y" ]; then
echo -n " Run spellcheck now? [y/N]: "
read RESPONSE
if [ "$RESPONSE" != "y" ]; then
echo
echo -e "Please run: make spellcheck\n";
exit 1
else
echo " Running spellcheck...";
make spellcheck
check_spellcheck
fi
fi
}
#############################################################
#
# Check Changes file is up to date.
@ -170,7 +198,7 @@ function check_pod_spec {
else
echo " Running lint...";
pod spec lint libxlsxwriter.podspec --use-libraries
check_pod_spec
Check_pod_spec
fi
fi
}
@ -241,6 +269,8 @@ function check_git_status {
check_test_status
clear
check_spellcheck
clear
check_docs
check_changefile
clear

View File

@ -11,7 +11,7 @@
int main() {
lxw_workbook *workbook = workbook_new("defined_name.xlsx");
lxw_workbook *workbook = workbook_new("defined_name.xlsx");
lxw_worksheet *worksheet;
/* We don't use the returned worksheets in this example and use a generic
@ -28,7 +28,7 @@ int main() {
/* Define a local/worksheet name. */
workbook_define_name(workbook, "Sheet2!Sales", "=Sheet2!$G$1:$G$10");
/* Write some text to the worksheets and a defined names in a formula. */
/* Write some text to the worksheets and one of the defined name in a formula. */
LXW_FOREACH_WORKSHEET(worksheet, workbook){
worksheet_set_column(worksheet, 0, 0, 45, NULL);

View File

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

View File

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