Skip to content

Commit

Permalink
Prep for release 0.7.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Feb 11, 2018
1 parent 7d440b6 commit f21770c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
/**
@page changes Changes

## 0.7.6 January 11 2018

- Added support for worksheet Grouping and Outlines.
See @ref working_with_outlines.
Feature request [#30][gh_30].

[gh_30]: https://github.com/jmcnamara/libxlsxwriter/issues/30

- Fix include of libxlsxwriter as a Cocoapod on macOS.
Issue [#94][gh_94].

[gh_94]: https://github.com/jmcnamara/libxlsxwriter/issues/94


## 0.7.5 September 25 2017

- Added support for data validations and dropdown lists. See @ref
Expand All @@ -9,6 +23,7 @@

[gh_31]: https://github.com/jmcnamara/libxlsxwriter/issues/31


## 0.7.4 August 20 2017

- Fix make build system "install" target for compatibility with macOS
Expand All @@ -24,7 +39,6 @@
[gh_116]: https://github.com/jmcnamara/libxlsxwriter/issues/116



## 0.7.2 July 26 2017

- Changed font sizes from integer to double to allow fractional font sizes.
Expand Down
2 changes: 1 addition & 1 deletion dev/release/gen_umbrella_file.pl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sub match_include {


# Generate the unbrella file.
print qq{#import <UIKit/UIKit.h>\n\n};
print qq{#import <Foundation/Foundation.h>\n\n};
print qq{#import "../xlsxwriter.h"\n};

print qq{#import "$_"\n} for @includes;
Expand Down
2 changes: 1 addition & 1 deletion include/xlsxwriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#include "xlsxwriter/format.h"
#include "xlsxwriter/utility.h"

#define LXW_VERSION "0.7.5"
#define LXW_VERSION "0.7.6"

#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.7.5"
s.version = "0.7.6"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.8"
Expand Down

0 comments on commit f21770c

Please sign in to comment.