Prep for release 0.3.8.

This commit is contained in:
John McNamara 2016-06-11 14:56:41 +01:00
parent 8c6174ffd9
commit 56064038a4
6 changed files with 12 additions and 4 deletions

View File

@ -1,6 +1,13 @@
/**
@page changes Changes
# 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
- Added updated Cocoapods file for Cocoapods 1.0.0. This also add support for

View File

@ -111,7 +111,7 @@ release: releasecheck
@echo
@echo "Pushing the cocoapod ..."
$(Q)pod trunk push libxlsxwriter.podspec
$(Q)pod trunk push libxlsxwriter.podspec --use-libraries
@echo
@echo "Finished. Opening files."

View File

@ -6,6 +6,7 @@
#import "common.h"
#import "content_types.h"
#import "core.h"
#import "custom.h"
#import "drawing.h"
#import "format.h"
#import "hash_table.h"

View File

@ -169,7 +169,7 @@ function check_pod_spec {
exit 1
else
echo " Running lint...";
pod spec lint libxlsxwriter.podspec
pod spec lint libxlsxwriter.podspec --use-libraries
check_pod_spec
fi
fi

View File

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

View File

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