Skip to content

Commit

Permalink
bump version to 0.34.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisStaratzis committed Sep 18, 2024
1 parent a95da6a commit 121ab2f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ WORKDIR /tmp

ENV MARIADB_VERSION="mariadb-11.0.2"

ARG MYTILE_VERSION="0.34.1"
ARG MYTILE_VERSION="0.34.2"

ARG TILEDB_VERSION="2.26.0"
ARG TILEDB_VERSION_SHORT_SHA="983b716"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ WORKDIR /tmp

ENV MARIADB_VERSION="mariadb-11.0.2"

ARG MYTILE_VERSION="0.34.1"
ARG MYTILE_VERSION="0.34.2"

ARG TILEDB_VERSION="2.26.0"
ARG TILEDB_VERSION_SHORT_SHA="983b716"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-min
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ENV MTR_MEM=/tmp \
MARIADB_VERSION="mariadb-11.0.2"
WORKDIR /tmp

ARG MYTILE_VERSION="0.34.1"
ARG MYTILE_VERSION="0.34.2"

ARG TILEDB_VERSION="2.26.0"
ARG TILEDB_VERSION_SHORT_SHA="983b716"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-server
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ WORKDIR /tmp

ENV MARIADB_VERSION="mariadb-11.0.2"

ARG MYTILE_VERSION="0.34.1"
ARG MYTILE_VERSION="0.34.2"

ARG TILEDB_VERSION="2.26.0"
ARG TILEDB_VERSION_SHORT_SHA="983b716"
Expand Down
6 changes: 3 additions & 3 deletions mytile/ha_mytile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4378,7 +4378,7 @@ mysql_declare_plugin(mytile){
PLUGIN_LICENSE_PROPRIETARY, /* the plugin license (PLUGIN_LICENSE_XXX) */
mytile_init_func, /* Plugin Init */
NULL, /* Plugin Deinit */
0x0341, /* version number (0.34.1) */
0x0342, /* version number (0.34.2) */
tile::statusvars::mytile_status_variables, /* status variables */
tile::sysvars::mytile_system_variables, /* system variables */
NULL, /* config options */
Expand All @@ -4395,9 +4395,9 @@ maria_declare_plugin(mytile){
PLUGIN_LICENSE_PROPRIETARY, /* the plugin license (PLUGIN_LICENSE_XXX) */
mytile_init_func, /* Plugin Init */
NULL, /* Plugin Deinit */
0x0341, /* version number (0.34.1) */
0x0342, /* version number (0.34.2) */
tile::statusvars::mytile_status_variables, /* status variables */
tile::sysvars::mytile_system_variables, /* system variables */
"0.34.1", /* string version */
"0.34.2", /* string version */
MariaDB_PLUGIN_MATURITY_BETA /* maturity */
} maria_declare_plugin_end;

0 comments on commit 121ab2f

Please sign in to comment.