diff --git a/website/docs/releases.md b/website/docs/releases.md index 32a5c4d..feb9bea 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,14 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### 0.0.22502 [June 19 2025] +* IANA released version 2025b of the Time Zone Database. Hyper’s time zone information is updated accordingly. Noteworthy changes: + * New zone America/Coyhaique + * Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. +* Support for the FILTER clause has been added to aggregation functions in Hyper SQL. + * For example, you can now write queries such as `SELECT count(*), count(*) FILTER (WHERE color = 'blue') FROM phone_cases;`. + * The FILTER clause is not supported for ordered-set aggregates. The FILTER clause is only supported for WINDOW functions, which are aggregates. + ### 0.0.22106 [May 1 2025] * The following deprecated geospatial functions have been removed from Hyper SQL: diff --git a/website/src/config.ts b/website/src/config.ts index a07ee76..d97055f 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.22106.r7822c4e1'; +const version_long = '0.0.22502.r99d1cc31'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';