diff --git a/website/docs/releases.md b/website/docs/releases.md index ed05aa1..325f823 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,10 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### 0.0.26359 [August 24 2026] +* Fixed an issue in Hyper on Apple Silicon Macs running macOS versions prior to version 26 +* Additional performance improvements and defect fixes + ### 0.0.26225 [August 7 2026] * `ARRAY_AGG` now supports `ORDER BY` and `{NULL | ABSENT} ON NULL`. * Added `LISTAGG`, `STRING_AGG`, `JSON_ARRAYAGG`, `SKEWNESS_POP`, `SKEWNESS_SAMP` and `KURTOSIS` [aggregate functions](https://developer.salesforce.com/docs/data/data-cloud-query-guide/references/dc-sql-reference/aggregate.html). diff --git a/website/src/config.ts b/website/src/config.ts index 8310c37..252264f 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.26225.rbf04a855'; +const version_long = '0.0.26359.r07abb490'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';