diff --git a/Cargo.lock b/Cargo.lock index ce97a1a71e71c..4cdddbafc9097 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4479,7 +4479,7 @@ dependencies = [ [[package]] name = "mz-balancerd" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "async-trait", @@ -4621,7 +4621,7 @@ dependencies = [ [[package]] name = "mz-catalog-debug" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "arrow", @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "mz-clusterd" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "axum", @@ -5092,7 +5092,7 @@ dependencies = [ [[package]] name = "mz-environmentd" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "askama", @@ -5550,7 +5550,7 @@ dependencies = [ [[package]] name = "mz-materialized" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "mz-clusterd", "mz-environmentd", @@ -5742,7 +5742,7 @@ dependencies = [ [[package]] name = "mz-orchestratord" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "async-trait", @@ -5905,7 +5905,7 @@ dependencies = [ [[package]] name = "mz-persist-client" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "arrayvec 0.7.4", @@ -6992,7 +6992,7 @@ dependencies = [ [[package]] name = "mz-testdrive" -version = "0.129.0-dev.0" +version = "0.129.0" dependencies = [ "anyhow", "arrow", diff --git a/LICENSE b/LICENSE index 79ed0894f23b6..caa28943872ee 100644 --- a/LICENSE +++ b/LICENSE @@ -13,7 +13,7 @@ Business Source License 1.1 Licensor: Materialize, Inc. -Licensed Work: Materialize Version 20250110 +Licensed Work: Materialize Version v0.129.0 The Licensed Work is © 2025 Materialize, Inc. Additional Use Grant: Within a single installation of Materialize, you diff --git a/misc/helm-charts/operator/Chart.yaml b/misc/helm-charts/operator/Chart.yaml index 8a05773ce29bc..84be40715ba46 100644 --- a/misc/helm-charts/operator/Chart.yaml +++ b/misc/helm-charts/operator/Chart.yaml @@ -12,6 +12,6 @@ name: materialize-operator description: Materialize Kubernetes Operator Helm Chart type: application version: v25.1.0-beta.1 -appVersion: v0.129.0-dev.0 +appVersion: v0.129.0 icon: https://materialize.com/favicon.ico home: https://materialize.com diff --git a/misc/helm-charts/operator/README.md b/misc/helm-charts/operator/README.md index 879fbb68a9fa2..770e8d5dd6f87 100644 --- a/misc/helm-charts/operator/README.md +++ b/misc/helm-charts/operator/README.md @@ -1,6 +1,6 @@ # Materialize Kubernetes Operator Helm Chart -![Version: v25.1.0-beta.1](https://img.shields.io/badge/Version-v25.1.0--beta.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.129.0-dev.0](https://img.shields.io/badge/AppVersion-v0.129.0--dev.0-informational?style=flat-square) +![Version: v25.1.0-beta.1](https://img.shields.io/badge/Version-v25.1.0--beta.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.129.0](https://img.shields.io/badge/AppVersion-v0.129.0-informational?style=flat-square) Materialize Kubernetes Operator Helm Chart @@ -137,7 +137,7 @@ The following table lists the configurable parameters of the Materialize operato | `operator.features.createConsole` | Flag to indicate whether to create console pods for the environments | ``true`` | | `operator.image.pullPolicy` | Policy for pulling the image: "IfNotPresent" avoids unnecessary re-pulling of images | ``"IfNotPresent"`` | | `operator.image.repository` | The Docker repository for the operator image | ``"materialize/orchestratord"`` | -| `operator.image.tag` | The tag/version of the operator image to be used | ``"v0.129.0-dev.0"`` | +| `operator.image.tag` | The tag/version of the operator image to be used | ``"v0.129.0"`` | | `operator.nodeSelector` | | ``{}`` | | `operator.resources.limits` | Resource limits for the operator's CPU and memory | ``{"memory":"512Mi"}`` | | `operator.resources.requests` | Resources requested by the operator for CPU and memory | ``{"cpu":"100m","memory":"512Mi"}`` | @@ -161,7 +161,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm ```shell helm install my-materialize-operator \ - --set operator.image.tag=v0.129.0-dev.0 \ + --set operator.image.tag=v0.129.0 \ materialize/materialize-operator ``` @@ -196,7 +196,7 @@ metadata: name: 12345678-1234-1234-1234-123456789012 namespace: materialize-environment spec: - environmentdImageRef: materialize/environmentd:v0.129.0-dev.0 + environmentdImageRef: materialize/environmentd:v0.129.0 backendSecretName: materialize-backend environmentdResourceRequirements: limits: diff --git a/misc/helm-charts/operator/tests/deployment_test.yaml b/misc/helm-charts/operator/tests/deployment_test.yaml index af0a5838e83e3..7999dd63c8fba 100644 --- a/misc/helm-charts/operator/tests/deployment_test.yaml +++ b/misc/helm-charts/operator/tests/deployment_test.yaml @@ -17,7 +17,7 @@ tests: of: Deployment - equal: path: spec.template.spec.containers[0].image - value: materialize/orchestratord:v0.129.0-dev.0 + value: materialize/orchestratord:v0.129.0 - equal: path: spec.template.spec.containers[0].imagePullPolicy value: IfNotPresent diff --git a/misc/helm-charts/operator/values.yaml b/misc/helm-charts/operator/values.yaml index 43dd9ed141856..14100475aae55 100644 --- a/misc/helm-charts/operator/values.yaml +++ b/misc/helm-charts/operator/values.yaml @@ -13,7 +13,7 @@ operator: # -- The Docker repository for the operator image repository: materialize/orchestratord # -- The tag/version of the operator image to be used - tag: v0.129.0-dev.0 + tag: v0.129.0 # -- Policy for pulling the image: "IfNotPresent" avoids unnecessary re-pulling of images pullPolicy: IfNotPresent diff --git a/misc/helm-charts/testing/environmentd.yaml b/misc/helm-charts/testing/environmentd.yaml index e47ad40c6c410..f4a257fe4f132 100644 --- a/misc/helm-charts/testing/environmentd.yaml +++ b/misc/helm-charts/testing/environmentd.yaml @@ -28,7 +28,7 @@ metadata: name: 12345678-1234-1234-1234-123456789012 namespace: materialize-environment spec: - environmentdImageRef: materialize/environmentd:v0.129.0-dev.0 + environmentdImageRef: materialize/environmentd:v0.129.0 backendSecretName: materialize-backend #balancerdExternalCertificateSpec: # dnsNames: diff --git a/src/balancerd/BUILD.bazel b/src/balancerd/BUILD.bazel index 3936222c72bed..e7532564eb126 100644 --- a/src/balancerd/BUILD.bazel +++ b/src/balancerd/BUILD.bazel @@ -30,7 +30,7 @@ rust_library( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -70,7 +70,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -137,7 +137,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_balancerd", "//src/alloc:mz_alloc", @@ -175,7 +175,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_balancerd", "//src/alloc:mz_alloc", diff --git a/src/balancerd/Cargo.toml b/src/balancerd/Cargo.toml index 717b437ff5441..094e4275c9827 100644 --- a/src/balancerd/Cargo.toml +++ b/src/balancerd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-balancerd" description = "Balancer service." -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/catalog-debug/BUILD.bazel b/src/catalog-debug/BUILD.bazel index 89825d31bcd97..c527853d483e7 100644 --- a/src/catalog-debug/BUILD.bazel +++ b/src/catalog-debug/BUILD.bazel @@ -29,7 +29,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/build-info:mz_build_info", diff --git a/src/catalog-debug/Cargo.toml b/src/catalog-debug/Cargo.toml index db6b42daca47a..719da152e5c2f 100644 --- a/src/catalog-debug/Cargo.toml +++ b/src/catalog-debug/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-catalog-debug" description = "Durable metadata storage debug tool." -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/clusterd/BUILD.bazel b/src/clusterd/BUILD.bazel index d855d6f9b04aa..2ae7f86a28ecb 100644 --- a/src/clusterd/BUILD.bazel +++ b/src/clusterd/BUILD.bazel @@ -31,7 +31,7 @@ rust_library( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -80,7 +80,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -153,7 +153,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_clusterd", "//src/alloc:mz_alloc", diff --git a/src/clusterd/Cargo.toml b/src/clusterd/Cargo.toml index 0297f3384de7e..3a2f0d6166246 100644 --- a/src/clusterd/Cargo.toml +++ b/src/clusterd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-clusterd" description = "Materialize's cluster server." -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/environmentd/BUILD.bazel b/src/environmentd/BUILD.bazel index 112ae68e87cf9..b0d78a237f65f 100644 --- a/src/environmentd/BUILD.bazel +++ b/src/environmentd/BUILD.bazel @@ -43,7 +43,7 @@ rust_library( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_environmentd_build_script", "//src/adapter:mz_adapter", @@ -117,7 +117,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -254,7 +254,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -323,7 +323,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -392,7 +392,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -461,7 +461,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -530,7 +530,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -599,7 +599,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -668,7 +668,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/adapter-types:mz_adapter_types", @@ -731,7 +731,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_environmentd", "//src/adapter:mz_adapter", diff --git a/src/environmentd/Cargo.toml b/src/environmentd/Cargo.toml index 0e2dccf058ffa..79f0e0c22ff34 100644 --- a/src/environmentd/Cargo.toml +++ b/src/environmentd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-environmentd" description = "Manages a single Materialize environment." -version = "0.129.0-dev.0" +version = "0.129.0" authors = ["Materialize, Inc."] license = "proprietary" edition.workspace = true diff --git a/src/materialized/BUILD.bazel b/src/materialized/BUILD.bazel index 32491cc80b06d..b127aab3df3e0 100644 --- a/src/materialized/BUILD.bazel +++ b/src/materialized/BUILD.bazel @@ -29,7 +29,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/clusterd:mz_clusterd", "//src/environmentd:mz_environmentd", diff --git a/src/materialized/Cargo.toml b/src/materialized/Cargo.toml index 9c1f242e7ea4b..f961d7c35cb8e 100644 --- a/src/materialized/Cargo.toml +++ b/src/materialized/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-materialized" description = "Materialize's unified binary." -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/orchestratord/BUILD.bazel b/src/orchestratord/BUILD.bazel index e2a860a12d60c..140c85832aa57 100644 --- a/src/orchestratord/BUILD.bazel +++ b/src/orchestratord/BUILD.bazel @@ -31,7 +31,7 @@ rust_library( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -69,7 +69,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/alloc:mz_alloc", "//src/alloc-default:mz_alloc_default", @@ -120,7 +120,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_orchestratord", "//src/alloc:mz_alloc", diff --git a/src/orchestratord/Cargo.toml b/src/orchestratord/Cargo.toml index 4336781661537..60c5a2d3ef3ca 100644 --- a/src/orchestratord/Cargo.toml +++ b/src/orchestratord/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-orchestratord" description = "Kubernetes operator for Materialize regions" -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/persist-client/BUILD.bazel b/src/persist-client/BUILD.bazel index bad66366a1481..c8160b71777ac 100644 --- a/src/persist-client/BUILD.bazel +++ b/src/persist-client/BUILD.bazel @@ -29,7 +29,7 @@ rust_library( proc_macro_deps = ["//src/persist-proc:mz_persist_proc"] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_persist_client_build_script", "//src/build-info:mz_build_info", @@ -68,7 +68,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/build-info:mz_build_info", "//src/dyncfg:mz_dyncfg", diff --git a/src/persist-client/Cargo.toml b/src/persist-client/Cargo.toml index 4d9954db45382..a3f8d6efcc9d2 100644 --- a/src/persist-client/Cargo.toml +++ b/src/persist-client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-persist-client" description = "Client for Materialize pTVC durability system" -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false diff --git a/src/testdrive/BUILD.bazel b/src/testdrive/BUILD.bazel index 96f05a9336d5b..61d40e6336bac 100644 --- a/src/testdrive/BUILD.bazel +++ b/src/testdrive/BUILD.bazel @@ -29,7 +29,7 @@ rust_library( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_testdrive_build_script", "//src/adapter:mz_adapter", @@ -74,7 +74,7 @@ rust_test( ), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ "//src/adapter:mz_adapter", "//src/avro:mz_avro", @@ -163,7 +163,7 @@ rust_binary( proc_macro_deps = [] + all_crate_deps(proc_macro = True), rustc_env = {}, rustc_flags = [], - version = "0.129.0-dev.0", + version = "0.129.0", deps = [ ":mz_testdrive", "//src/adapter:mz_adapter", diff --git a/src/testdrive/Cargo.toml b/src/testdrive/Cargo.toml index c04acd13f603a..a956d4b9c6ed5 100644 --- a/src/testdrive/Cargo.toml +++ b/src/testdrive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mz-testdrive" description = "Integration test driver for Materialize." -version = "0.129.0-dev.0" +version = "0.129.0" edition.workspace = true rust-version.workspace = true publish = false