Prep for release 1.2.2.

This commit is contained in:
John McNamara 2025-03-29 09:22:19 +00:00
parent 0bae4be666
commit 21c11a2052
4 changed files with 32 additions and 7 deletions

View file

@ -2,6 +2,28 @@
@page changes Changes
## 1.2.2 March 29 2025
- Added support for manually positioning chart elements such as the
chart axis labels, the chart legend, the chart plot area and the chart title.
See @ref chart_layout for more details.
Feature request [#477][gh_477].
[gh_477]: https://github.com/jmcnamara/libxlsxwriter/issues/477
### Information for Packagers:
- This is shared object library version `libxlsxwriter.so.9`. This should be
updated automatically via `make` and `cmake` as part of the build process.
- This is serial version 1.2.2. This is not a semver version number.
- Please report any downstream patches back upstream to help improve the overall
build process.
## 1.2.1 February 26 2025
- Added the `workbook_set_size()` function to set the size of the window when

View file

@ -19,8 +19,8 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "1.2.1"
#define LXW_VERSION_ID 121
#define LXW_SOVERSION "8"
#define LXW_VERSION "1.2.2"
#define LXW_VERSION_ID 122
#define LXW_SOVERSION "9"
#endif /* __LXW_XLSXWRITER_H__ */

View file

@ -3379,10 +3379,13 @@ void chart_title_off(lxw_chart *chart);
void chart_title_set_layout(lxw_chart *chart, lxw_chart_layout *layout);
/**
* @brief
* @brief Allow the chart title to overlay the chart.
*
* @param chart
* @param overlay
* @param chart Pointer to a lxw_chart instance to be configured.
* @param overlay Turn off/on the overlay. (0/1)
*
* This option allows the chart title to overlay the chart when the
* `chart_title_set_layout()` function.
*/
void chart_title_set_overlay(lxw_chart *chart, uint8_t overlay);

View file

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