Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
brechtsanders committed Feb 16, 2022
1 parent b3dfd27 commit af485eb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion build/libxlsxio_write_shared.depend
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion examples/example_xlsxio_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Expand Down
2 changes: 1 addition & 1 deletion include/xlsxio_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit af485eb

Please sign in to comment.