Prep for release 0.4.7.

This commit is contained in:
John McNamara 2017-01-02 01:32:43 +00:00
parent 0d1f068644
commit 29dd8728d4
4 changed files with 28 additions and 11 deletions

View File

@ -2,16 +2,33 @@
@page changes Changes
## 0.4.7 January 2 2017
- Added `chart_axis_set_reverse()` function to reverse the order of a chart
axis.
- Added `chart_axis_set_min()`and `chart_axis_set_max()` functions to set the
minimum and maximum value for a chart axis.
- Added `chart_axis_set_log_base()` function to set the log base of a chart
axis.
Feature request [#70][gh_70].
[gh_70]: https://github.com/jmcnamara/libxlsxwriter/issues/70
## 0.4.6 January 1 2017
- Added functions to set chart line and fill properties, see:
- `chart_series_set_line()`
- `chart_series_set_fill()`
- `chart_axis_set_line()`
- `chart_axis_set_fill()`
- @ref chart_lines
- @ref chart_fills
- `chart_series_set_line()`. Feature request [#83][gh_83].
- `chart_series_set_fill()`.
- `chart_axis_set_line()`.
- `chart_axis_set_fill()`.
- @ref chart_lines.
- @ref chart_fills.
[gh_83]: https://github.com/jmcnamara/libxlsxwriter/issues/83
## 0.4.5 December 31 2016

View File

@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"
#define LXW_VERSION "0.4.6"
#define LXW_VERSION "0.4.7"
#endif /* __LXW_XLSXWRITER_H__ */

View File

@ -908,7 +908,7 @@ void chart_axis_set_reverse(lxw_chart_axis *axis);
*
* @note This function is applicable to value and date axes only.
* It isn't applicable to the horizontal category axis in the above
* example. For more information ee @ref ww_charts_axes.
* example. For more information see @ref ww_charts_axes.
*
*/
void chart_axis_set_min(lxw_chart_axis *axis, double min);
@ -930,7 +930,7 @@ void chart_axis_set_min(lxw_chart_axis *axis, double min);
*
* @note This function is applicable to value and date axes only.
* It isn't applicable to the horizontal category axis in the above
* example. For more information ee @ref ww_charts_axes.
* example. For more information see @ref ww_charts_axes.
*/
void chart_axis_set_max(lxw_chart_axis *axis, double max);
@ -953,7 +953,7 @@ void chart_axis_set_max(lxw_chart_axis *axis, double max);
*
* @note This function is applicable to value and date axes only.
* It isn't applicable to the horizontal category axis in the above
* example. For more information ee @ref ww_charts_axes.
* example. For more information see @ref ww_charts_axes.
*/
void chart_axis_set_log_base(lxw_chart_axis *axis, uint16_t log_base);

View File

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