diff --git a/Changes.txt b/Changes.txt index 10a996fd..9d168d0b 100644 --- a/Changes.txt +++ b/Changes.txt @@ -2,6 +2,14 @@ @page changes Changes +## 0.7.2 July 26 2017 + +- Changed font sizes from integer to double to allow fractional font sizes. + Issue [#114][gh_114]. + + [gh_114]: https://github.com/jmcnamara/libxlsxwriter/issues/114 + + ## 0.7.1 July 24 2017 - Fixed issue where internal file creation and modification dates were in the diff --git a/include/xlsxwriter.h b/include/xlsxwriter.h index 1e0fb018..0349d0d9 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.1" +#define LXW_VERSION "0.7.2" #endif /* __LXW_XLSXWRITER_H__ */ diff --git a/libxlsxwriter.podspec b/libxlsxwriter.podspec index a63120ea..d255df7d 100644 --- a/libxlsxwriter.podspec +++ b/libxlsxwriter.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "libxlsxwriter" - s.version = "0.7.1" + s.version = "0.7.2" s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files." s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8"