mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 1.2.1.
This commit is contained in:
parent
58248a0582
commit
ad6ea1ed13
33
Changes.txt
33
Changes.txt
@ -1,10 +1,41 @@
|
||||
/**
|
||||
@page changes Changes
|
||||
|
||||
|
||||
## 1.2.1 February 26 2025
|
||||
|
||||
- Added the `workbook_set_size()` function to set the size of the window when
|
||||
the file is opened. This is generally only useful on macOS since Microsoft
|
||||
Windows uses the window size from the last time an Excel file was
|
||||
opened/saved. Feature request [#472][gh_472].
|
||||
|
||||
[gh_472]: https://github.com/jmcnamara/libxlsxwriter/issues/472
|
||||
|
||||
- Improved the cmake build support for using the `minizip` library.
|
||||
Pull request [#471][gh_471].
|
||||
|
||||
[gh_471]: https://github.com/jmcnamara/libxlsxwriter/issues/471
|
||||
|
||||
|
||||
### Packagers:
|
||||
|
||||
- This is serial version 1.2.1. This is not a semver version.
|
||||
|
||||
- This is shared object library version `libxlsxwriter.so.8`. This should be
|
||||
updated automatically via `make` and `cmake` as part of the build process.
|
||||
|
||||
- This version tries to improve the overall `cmake` build process when using
|
||||
minizip via the `-DUSE_SYSTEM_MINIZIP=ON` configuration option.
|
||||
|
||||
- Please report any downstream patches back upstream to help improve the overall
|
||||
build process.
|
||||
|
||||
|
||||
## 1.2.0 January 11 2025
|
||||
|
||||
- Added `format_set_font_family()` and `format_set_font_charset()` format
|
||||
functions to support Middle Eastern and Asian fonts.
|
||||
Feature request [#468][gh_468].
|
||||
|
||||
[gh_468]: https://github.com/jmcnamara/libxlsxwriter/issues/468
|
||||
|
||||
@ -12,7 +43,7 @@
|
||||
## 1.1.9 October 24 2024
|
||||
|
||||
- Fix minor pointer/value error in `lxw_name_to_row()` and `lxw_name_to_col()`
|
||||
utility functions.
|
||||
utility functions. Issue [#459][gh_459].
|
||||
|
||||
[gh_459]: https://github.com/jmcnamara/libxlsxwriter/issues/459
|
||||
|
||||
|
@ -19,8 +19,8 @@
|
||||
#include "xlsxwriter/format.h"
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
#define LXW_VERSION "1.2.0"
|
||||
#define LXW_VERSION_ID 120
|
||||
#define LXW_SOVERSION "7"
|
||||
#define LXW_VERSION "1.2.1"
|
||||
#define LXW_VERSION_ID 121
|
||||
#define LXW_SOVERSION "8"
|
||||
|
||||
#endif /* __LXW_XLSXWRITER_H__ */
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "libxlsxwriter"
|
||||
s.version = "1.2.0"
|
||||
s.version = "1.2.1"
|
||||
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
||||
s.ios.deployment_target = "12.0"
|
||||
s.osx.deployment_target = "10.13"
|
||||
|
Loading…
x
Reference in New Issue
Block a user