From f5ce952b68a3ec8321b9292a3c8d9d2d1a8936db Mon Sep 17 00:00:00 2001 From: John McNamara Date: Wed, 11 Jan 2017 00:11:30 +0000 Subject: [PATCH] Prep for release 0.5.6. --- Changes.txt | 7 +++++++ Readme.md | 2 +- docs/src/mainpage.dox | 2 +- include/xlsxwriter.h | 2 +- libxlsxwriter.podspec | 4 ++-- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Changes.txt b/Changes.txt index 749ff503..0dadd724 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,13 @@ /** @page changes Changes + +## 0.5.6 January 11 2017 + +- Added `chart_axis_set_interval_unit()` and `chart_axis_set_interval_tick()` + functions to adjust category axis intervals. + + ## 0.5.5 January 10 2017 - Added `chart_axis_set_major_unit()` and `chart_axis_set_minor_unit()` to set diff --git a/Readme.md b/Readme.md index e8ef5556..0a1c1d58 100644 --- a/Readme.md +++ b/Readme.md @@ -24,7 +24,7 @@ It supports features such as: - Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter). - FreeBSD license. - ANSI C. -- Works with GCC 4.x, GCC 5.x, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. +- Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. - Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin. - Compiles for 32 and 64 bit. - The only dependency is on `zlib`. diff --git a/docs/src/mainpage.dox b/docs/src/mainpage.dox index 5b3fdb53..769ba2f0 100644 --- a/docs/src/mainpage.dox +++ b/docs/src/mainpage.dox @@ -24,7 +24,7 @@ features such as: - Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter). - FreeBSD @ref license. - ANSI C. -- Works with GCC 4.x, GCC 5.x, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. +- Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. - Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin. - Compiles for 32 and 64 bit. - The only dependency is on `zlib`. diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 93f6efac..b4f38d58 100644 --- a/include/xlsxwriter.h +++ b/include/xlsxwriter.h @@ -18,6 +18,6 @@ #include "xlsxwriter/format.h" #include "xlsxwriter/utility.h" -#define LXW_VERSION "0.5.5" +#define LXW_VERSION "0.5.6" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index b9a198bd..4db5935c 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.5.5" + s.version = "0.5.6" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8" @@ -21,7 +21,7 @@ Pod::Spec.new do |s| * Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter). * FreeBSD license. * ANSI C. - * Works with GCC 4.x, GCC 5.x, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. + * Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32. * Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin. * Compiles for 32 and 64 bit. * The only dependency is on `zlib`.