Skip to content

Commit

Permalink
Prep for release 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Mar 30, 2021
1 parent 37a8767 commit 9aa3d73
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 4 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.0.1 March 30 2021

- Added support for [pkg-config][pkg-config] to Make/Cmake installs. See the
@ref gsg_using section of the Getting Started guide.
</p>

[pkg-config]: https://www.freedesktop.org/wiki/Software/pkg-config/

- Added ability to add accessibility options "description" and "decorative" to
images via `worksheet_insert_image_opt()` and #lxw_image_options.
</p>

- Added the `workbook_read_only_recommended()` function to set the Excel
"Read-only Recommended" option that is available when saving a file.
</p>

- Fixed issue where pattern formats without colors were given a default black
fill color.
</p>

- Added option to set a chart crossing to 'min' via
`chart_axis_set_crossing_min()` as well as the existing 'max' option. The
'min' option isn't available in the Excel interface but can be enabled via
VBA.
</p>

- Added some additional information on using constant_memory mode with memory
mounted /tmp directories. See @ref ww_mem_temp.

Issue [#306][gh_306].

[gh_306]: https://github.com/jmcnamara/libxlsxwriter/issues/306

- Added build option to compile libxlsxwriter as a "universal binary" for both
Apple silicon and Intel-based Macs, i.e., arm64 and x86_64. See @ref
gsg_universal.
</p>

- Fixed issue where the limit for header/footer strings was
255 bytes instead of 255 characters and as a result UTF8
strings were being truncated.

Issue [#305][gh_305].

[gh_305]: https://github.com/jmcnamara/libxlsxwriter/issues/305


## 1.0.0 September 7 2020

- Added support for worksheet conditional formatting. See
Expand Down
4 changes: 2 additions & 2 deletions include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"

#define LXW_VERSION "1.0.0"
#define LXW_VERSION_ID 100
#define LXW_VERSION "1.0.1"
#define LXW_VERSION_ID 101

#endif /* __LXW_XLSXWRITER_H__ */
2 changes: 1 addition & 1 deletion include/xlsxwriter/workbook.h
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ lxw_error workbook_set_vba_name(lxw_workbook *workbook, const char *name);
/**
* @brief Add a recommendation to open the file in "read-only" mode.
*
* @param workbook
* @param workbook Pointer to a lxw_workbook instance.
*
* This function can be used to set the Excel "Read-only Recommended" option
* that is available when saving a file. This presents the user of the file
Expand Down
2 changes: 1 addition & 1 deletion libxlsxwriter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "1.0.0"
s.version = "1.0.1"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"
Expand Down

0 comments on commit 9aa3d73

Please sign in to comment.