Skip to content

Commit

Permalink
Prep for release 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Sep 7, 2020
1 parent 13aebf9 commit 90ffbeb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
/**
@page changes Changes

## 1.0.0 September 7 2020

- Added support for worksheet conditional formatting. See
`worksheet_conditional_format_range()` and @ref
working_with_conditional_formatting.

Feature request [#32][gh_32] and [#302][gh_302].

[gh_302]: https://github.com/jmcnamara/libxlsxwriter/issues/302
[gh_32]: https://github.com/jmcnamara/libxlsxwriter/issues/32

- Added performance optimization for search for control characters in strings
in `worksheet_write_string()`.

Issue [#298][gh_298].

[gh_298]: https://github.com/jmcnamara/libxlsxwriter/issues/298

- Made `lxw_datetime_to_excel_datetime()` a function public.
</p>

- There are now over 1000 test cases, including 650 tests that compare the
output from libxlsxwriter, byte for byte, against test files created in
Excel. This is also the 100th release of libxlsxwriter.


## 0.9.9 August 17 2020

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 "0.9.9"
#define LXW_VERSION_ID 99
#define LXW_VERSION "1.0.0"
#define LXW_VERSION_ID 100

#endif /* __LXW_XLSXWRITER_H__ */
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 = "0.9.9"
s.version = "1.0.0"
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 90ffbeb

Please sign in to comment.