1.1.0
This release covers the feature of inserting a hint text at the top of the tab.
You can use the following functions of the ExcelTab
interface to create a tab with a hint text:
ExcelTab ofSql(String sql, String hintText);
ExcelTab ofSql(String sql, List<Object> parameters, String hintText);
ExcelTab of(String name, String sql, String hintText);
ExcelTab of(String name, String sql, List<Object> parameters, String hintText);
This is a completely backwards-compatible change.