Prep for release 0.9.4.

This commit is contained in:
John McNamara 2020-01-19 16:27:05 +00:00
parent e67f2f8754
commit 559e391cd1
3 changed files with 10 additions and 3 deletions

View file

@ -2,6 +2,13 @@
@page changes Changes @page changes Changes
## 0.9.4 January 19 2019
- Added option to specify worksheet "object positioning" for images and charts
to define how they move or size with underlying cells. See @ref
ww_object_position_options and @ref working_with_object_positioning.
## 0.9.3 January 13 2019 ## 0.9.3 January 13 2019
- Fix Xcode/Cocoapods build warnings. - Fix Xcode/Cocoapods build warnings.

View file

@ -18,7 +18,7 @@
#include "xlsxwriter/format.h" #include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h" #include "xlsxwriter/utility.h"
#define LXW_VERSION "0.9.3" #define LXW_VERSION "0.9.4"
#define LXW_VERSION_ID 93 #define LXW_VERSION_ID 94
#endif /* __LXW_XLSXWRITER_H__ */ #endif /* __LXW_XLSXWRITER_H__ */

View file

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