diff --git a/Changes.txt b/Changes.txt index 6405feee..7e7ff8ac 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,19 @@ /** @page changes Changes + +## 0.7.7 May 16 2018 + +- Fix to ensure the use of wide filenames on Windows with Microsoft Visual + C++. + Issue [#153][gh_153]. + + [gh_153]: https://github.com/jmcnamara/libxlsxwriter/issues/153 + +- Added docs on building an app with Cmake and Microsoft Visual C++ on + Windows. See @ref gsg_cmake_app. + + ## 0.7.6 January 11 2018 - Added support for worksheet Grouping and Outlines. diff --git a/docs/src/getting_started.dox b/docs/src/getting_started.dox index b9099a61..a6648c32 100644 --- a/docs/src/getting_started.dox +++ b/docs/src/getting_started.dox @@ -272,7 +272,7 @@ configure with: For more information on using generators see: [cmake-generators](https://cmake.org/cmake/help/v3.0/manual/cmake-generators.7.html). -@subsection gsg_cmake_app Build an app with Cmake and Microsoft Visual Studio +@subsection gsg_cmake_app Building an app with Cmake and Microsoft Visual Studio Open a Windows CMD or Command Window and set up your MSVC environment, if required. diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 10490759..009fbfa0 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.7.6" +#define LXW_VERSION "0.7.7" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index 85fb577a..f1095868 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.7.6" + s.version = "0.7.7" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"