This commit is contained in:
Brecht Sanders 2022-02-16 23:46:28 +01:00
parent b3dfd27c38
commit af485ebf4b
4 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,15 @@
0.2.31
2022-02-16 Brecht Sanders https://github.com/brechtsanders/
* changed free() to xlsxioread_free() in example_xlsxio_read.c (issue #73)
0.2.30
2021-09-01 Brecht Sanders https://github.com/brechtsanders/
* added .pc and .cmake file generation and installation to CMakeLists.txt
2021-03-12 Brecht Sanders https://github.com/brechtsanders/
* remove <AppVersion> tag from xlsxio_write.c and put version information in <Application> (issue #91)

View File

@ -22,7 +22,7 @@
1585051485 \\server\users\brecht\sources\cpp\xlsxio\include\xlsxio_version.h
1584724326 source:z:\xlsxio\lib\xlsxio_write.c
1615567896 source:z:\xlsxio\lib\xlsxio_write.c
"xlsxio_write.h"
"xlsxio_version.h"
<stdlib.h>

View File

@ -142,7 +142,7 @@ int main (int argc, char* argv[])
while (xlsxioread_sheet_next_row(sheet)) {
while ((value = xlsxioread_sheet_next_cell(sheet)) != NULL) {
XML_Char_printf(X("%s\t"), value);
free(value);
xlsxioread_free(value);
}
printf("\n");
}

View File

@ -49,7 +49,7 @@ THE SOFTWARE.
/*! \brief minor version number */
#define XLSXIO_VERSION_MINOR 2
/*! \brief micro version number */
#define XLSXIO_VERSION_MICRO 30
#define XLSXIO_VERSION_MICRO 31
/*! @} */
/*! \cond PRIVATE */