diff --git a/README b/README index 89fc91b600e5..2f834cb978ea 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Apache Calcite release 1.9.0 +Apache Calcite release 1.10.0 This is a source or binary distribution of Apache Calcite. diff --git a/pom.xml b/pom.xml index 58a4a4be54d7..02fa963dd9c1 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ limitations under the License. UTF-8 ${project.basedir} 1 - 9 + 10 0.1 diff --git a/site/_docs/history.md b/site/_docs/history.md index 88dad2dfa688..2e965761c96a 100644 --- a/site/_docs/history.md +++ b/site/_docs/history.md @@ -28,6 +28,60 @@ For a full list of releases, see Downloads are available on the [downloads page]({{ site.baseurl }}/downloads/). +## 1.10.0 / 2016-10-07 +{: #v1-10-0} + +This release comes shortly after 1.9.0. It includes mainly bug fixes for the core and +Druid adapter. For the latest, we fixed an +important issue that +prevented us from handling consistently time dimensions in different time zones. + +Compatibility: This release is tested +on Linux, Mac OS X, Microsoft Windows; +using Oracle JDK 1.7, 1.8; +Guava versions 14.0 to 19.0; +Druid version 0.9.1.1; +other software versions as specified in `pom.xml`. + +New Feature + +* [CALCITE-1374] + Support operator `!=` as an alternative to `<>` + +Bug fixes, API changes and minor enhancements + +* [CALCITE-1378] + `ArrayIndexOutOfBoundsException` in sql-to-rel conversion for two-level columns +* [CALCITE-1379] + When expanding `STAR`, expand sub-fields in `RecordType` columns of `StructKind.PEEK_FIELDS` and `StructKind.PEEK_FIELDS_DEFAULT` +* [CALCITE-1381] + Function quantifier should be retained in a cloned Sql call (zhengdong) +* [CALCITE-1386] + `ITEM` operator ignores the value type of the collection, assigns to Object variable (Jungtaek Lim) +* [CALCITE-1392] + Druid default time column not properly recognized +* [CALCITE-1394] + Using `CoreMatchers.containsString` causes javadoc errors +* [CALCITE-1396] + `isDeterministic` only explores top `RexCall` +* [CALCITE-1397] + `ClassCastException` in `FilterReduceExpressionsRule` +* [CALCITE-1398] + Change visibility of `RelFieldTrimmer` utility methods +* [CALCITE-1400] + `AggregatePullUpConstantsRule` might adjust aggregation function parameters indices wrongly +* [CALCITE-1402] + Druid Filter translation incorrect if input reference is in RHS of comparison +* [CALCITE-1403] + `DruidAdapterIT` broken +* [CALCITE-1420] + Allow Calcite JDBC Driver minor version to be greater than 9 + +Web site and documentation + +* [CALCITE-1393] + Exclude packages `org.apache.calcite.benchmarks.generated`, `org.openjdk.jmh` from javadoc + ## 1.9.0 / 2016-09-22 {: #v1-9-0} diff --git a/site/_docs/howto.md b/site/_docs/howto.md index c8bd3b34a2f7..f47b5207fbb8 100644 --- a/site/_docs/howto.md +++ b/site/_docs/howto.md @@ -39,8 +39,8 @@ Unpack the source distribution `.tar.gz` or `.zip` file, then build using maven: {% highlight bash %} -$ tar xvfz calcite-1.9.0-source.tar.gz -$ cd calcite-1.9.0 +$ tar xvfz calcite-1.10.0-source.tar.gz +$ cd calcite-1.10.0 $ mvn install {% endhighlight %}