diff --git a/website/docs/releases.md b/website/docs/releases.md index feb9bea..91e8bdf 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,12 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### 0.0.23135 [August 28 2025] +* This release adds three new regular expression functions: + * `regexp_substr` to extract substrings + * `regexp_count` to count matches + * `regexp_instr` to find the position of a match + ### 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 diff --git a/website/src/config.ts b/website/src/config.ts index d97055f..86b2a3e 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.22502.r99d1cc31'; +const version_long = '0.0.23135.r60daa2a5'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';