diff --git a/website/docs/releases.md b/website/docs/releases.md index d14eeac..9d0991e 100644 --- a/website/docs/releases.md +++ b/website/docs/releases.md @@ -24,6 +24,11 @@ In case you are wondering why all our releases start with `0.0`, read [this FAQ ::: +### 0.0.24081 [December 11 2025] +* Added support for two new SQL functions: + * `split` splits a string into an array based on a delimiter. If the delimiter is null, it returns null. If the delimiter is empty, it splits the string into individual characters. + * `regexp_split_to_array` splits a string into an array by using a POSIX regular expression as the delimiter and returns the text from the end of the last match (or the beginning of the string) to the beginning of the match. When there are no more matches, it returns the text from the end of the last match to the end of the string. + ### 0.0.23576 [October 16 2025] * The default_database_version is upgraded to version 2 * This version better supports UPDATE and DELETE on extracts diff --git a/website/src/config.ts b/website/src/config.ts index 54deba4..cd90a87 100644 --- a/website/src/config.ts +++ b/website/src/config.ts @@ -1,4 +1,4 @@ -const version_long = '0.0.23576.r0633e4a4'; +const version_long = '0.0.24081.rd9c4b45a'; const version_short = version_long.substr(0, version_long.lastIndexOf('.')); const downloadBaseUrl = 'https://downloads.tableau.com/tssoftware/';