Prep for release 1.0.7.

This commit is contained in:
John McNamara 2021-07-01 23:38:46 +01:00
parent 7f20142d47
commit 1810eb6a97
3 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,14 @@
/**
@page changes Changes
## 1.0.7 July 1 2021
- Added support for writing Unix date/times via the
`worksheet_write_unixtime()` function.
- Added support for dynamic library soname version to help packagers and build
systems differentiate ABI versions.
## 1.0.6 May 28 2021

View File

@ -18,8 +18,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "1.0.6"
#define LXW_VERSION_ID 106
#define LXW_VERSION "1.0.7"
#define LXW_VERSION_ID 107
#define LXW_SOVERSION "2"
#endif /* __LXW_XLSXWRITER_H__ */

View File

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