Skip to content

Commit

Permalink
Prep for release 0.8.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Jun 20, 2019
1 parent 48a312e commit 4df6e87
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
/**
@page changes Changes

## 0.8.7 June 20 2019

- Added support for adding VBA macros to workbooks. These macros can be
extracted from existing xlsm files, created in Excel, and added to new xlsm
files. See @ref working_with_macros.
Feature request [#29][gh_29].

[gh_29]: https://github.com/jmcnamara/libxlsxwriter/issues/29

- Added support for ZIP64 extensions when writing very large xlsx files to
allow the zip container, or individual XML files within it, to be greater
than 4 GB. See @ref workbook_new_opt().
Feature request [#228][gh_228].

[gh_228]: https://github.com/jmcnamara/libxlsxwriter/issues/228

- Added extra validity checks on worksheet names.
Issues [#223][gh_223] and [#230][gh_230].

[gh_223]: https://github.com/jmcnamara/libxlsxwriter/issues/223
[gh_230]: https://github.com/jmcnamara/libxlsxwriter/issues/230


## 0.8.6 April 7 2019

- Fixed issue where images that started in hidden rows/columns weren't placed
Expand Down
2 changes: 1 addition & 1 deletion include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"

#define LXW_VERSION "0.8.6"
#define LXW_VERSION "0.8.7"

#endif /* __LXW_XLSXWRITER_H__ */
4 changes: 2 additions & 2 deletions libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "0.8.6"
s.version = "0.8.7"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"

s.description = <<-DESC
Expand Down

0 comments on commit 4df6e87

Please sign in to comment.