Skip to content

Commit

Permalink
Prep for release 1.1.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Apr 4, 2024
1 parent 6caa6b3 commit 873c1e8
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 5 deletions.
47 changes: 47 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,53 @@
/**
@page changes Changes

## 1.1.6 April 4 2024

- Updated vendored version of minizip to v 1.3.0 to include upstream fixes.

Feature request [#419][gh_419].

[gh_419]: https://github.com/jmcnamara/libxlsxwriter/issues/419

- Added `quote_prefix` format property.

Feature request [#385][gh_385].

[gh_385]: https://github.com/jmcnamara/libxlsxwriter/issues/385

- Added support for signed VBA projects.
</p>

- Fix worksheet password hashing algorithm for long passwords. Replace/fix
the worksheet protection password algorithm so that is works correctly
for strings over 24 chars.
</p>

- Fix cmake minizip version check.

Feature request [#405][gh_405].

[gh_405]: https://github.com/jmcnamara/libxlsxwriter/issues/405

- Fix for buffer overflow with utf-8 strings in data validation.
</p>

- Fix for range in text type conditional format.

Feature request [#394][gh_394].

[gh_394]: https://github.com/jmcnamara/libxlsxwriter/issues/394

- Fix 32bit multiply with overflow issue for images.

Fix multiply with overflow issue when image locations in the worksheet
were greater than the u32 max value.

- Added Swift package manager support.
</p>

- Added support for building Zig library.
</p>

## 1.1.5 December 30 2022

Expand Down
4 changes: 2 additions & 2 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"

#define LXW_VERSION "1.1.5"
#define LXW_VERSION_ID 115
#define LXW_VERSION "1.1.6"
#define LXW_VERSION_ID 116
#define LXW_SOVERSION "5"

#endif /* __LXW_XLSXWRITER_H__ */
6 changes: 3 additions & 3 deletions libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "1.1.5"
s.version = "1.1.6"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"

s.description = <<-DESC
Libxlsxwriter is a C library that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
Expand Down

0 comments on commit 873c1e8

Please sign in to comment.