Skip to content

Commit

Permalink
release: bump to version v0.131.0-dev.0
Browse files Browse the repository at this point in the history
  • Loading branch information
materialize-bot committed Jan 17, 2025
1 parent 8388630 commit 27c7d80
Show file tree
Hide file tree
Showing 22 changed files with 52 additions and 52 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion misc/helm-charts/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ name: materialize-operator
description: Materialize Kubernetes Operator Helm Chart
type: application
version: v25.1.0-beta.1
appVersion: v0.130.0-dev.0
appVersion: v0.131.0-dev.0
icon: https://materialize.com/favicon.ico
home: https://materialize.com
8 changes: 4 additions & 4 deletions misc/helm-charts/operator/README.md
Original file line number Diff line number Diff line change
@@ -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.130.0-dev.0](https://img.shields.io/badge/AppVersion-v0.130.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.131.0-dev.0](https://img.shields.io/badge/AppVersion-v0.131.0--dev.0-informational?style=flat-square)

Materialize Kubernetes Operator Helm Chart

Expand Down Expand Up @@ -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.130.0-dev.0"`` |
| `operator.image.tag` | The tag/version of the operator image to be used | ``"v0.131.0-dev.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"}`` |
Expand All @@ -162,7 +162,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.130.0-dev.0 \
--set operator.image.tag=v0.131.0-dev.0 \
materialize/materialize-operator
```

Expand Down Expand Up @@ -197,7 +197,7 @@ metadata:
name: 12345678-1234-1234-1234-123456789012
namespace: materialize-environment
spec:
environmentdImageRef: materialize/environmentd:v0.130.0-dev.0
environmentdImageRef: materialize/environmentd:v0.131.0-dev.0
backendSecretName: materialize-backend
environmentdResourceRequirements:
limits:
Expand Down
2 changes: 1 addition & 1 deletion misc/helm-charts/operator/tests/deployment_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tests:
of: Deployment
- equal:
path: spec.template.spec.containers[0].image
value: materialize/orchestratord:v0.130.0-dev.0
value: materialize/orchestratord:v0.131.0-dev.0
- equal:
path: spec.template.spec.containers[0].imagePullPolicy
value: IfNotPresent
Expand Down
4 changes: 2 additions & 2 deletions misc/helm-charts/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.130.0-dev.0
tag: v0.131.0-dev.0
# -- Policy for pulling the image: "IfNotPresent" avoids unnecessary re-pulling of images
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -231,7 +231,7 @@ rbac:
create: true

# -- Optionally use a non-default kubernetes scheduler.
schedulerName: null
schedulerName:

# Service account settings
serviceAccount:
Expand Down
2 changes: 1 addition & 1 deletion misc/helm-charts/testing/materialize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ metadata:
name: 12345678-1234-1234-1234-123456789012
namespace: materialize-environment
spec:
environmentdImageRef: materialize/environmentd:v0.130.0-dev.0
environmentdImageRef: materialize/environmentd:v0.131.0-dev.0
backendSecretName: materialize-backend
#balancerdExternalCertificateSpec:
# dnsNames:
Expand Down
8 changes: 4 additions & 4 deletions src/balancerd/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rust_library(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -70,7 +70,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -137,7 +137,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_balancerd",
"//src/alloc:mz_alloc",
Expand Down Expand Up @@ -175,7 +175,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_balancerd",
"//src/alloc:mz_alloc",
Expand Down
2 changes: 1 addition & 1 deletion src/balancerd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mz-balancerd"
description = "Balancer service."
version = "0.130.0-dev.0"
version = "0.131.0-dev.0"
edition.workspace = true
rust-version.workspace = true
publish = false
Expand Down
2 changes: 1 addition & 1 deletion src/catalog-debug/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/build-info:mz_build_info",
Expand Down
2 changes: 1 addition & 1 deletion src/catalog-debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mz-catalog-debug"
description = "Durable metadata storage debug tool."
version = "0.130.0-dev.0"
version = "0.131.0-dev.0"
edition.workspace = true
rust-version.workspace = true
publish = false
Expand Down
6 changes: 3 additions & 3 deletions src/clusterd/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rust_library(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -80,7 +80,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -153,7 +153,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_clusterd",
"//src/alloc:mz_alloc",
Expand Down
2 changes: 1 addition & 1 deletion src/clusterd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mz-clusterd"
description = "Materialize's cluster server."
version = "0.130.0-dev.0"
version = "0.131.0-dev.0"
edition.workspace = true
rust-version.workspace = true
publish = false
Expand Down
20 changes: 10 additions & 10 deletions src/environmentd/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ rust_library(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_environmentd_build_script",
"//src/adapter:mz_adapter",
Expand Down Expand Up @@ -114,7 +114,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -239,7 +239,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -305,7 +305,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -371,7 +371,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -437,7 +437,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -503,7 +503,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -569,7 +569,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -635,7 +635,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/adapter:mz_adapter",
"//src/adapter-types:mz_adapter_types",
Expand Down Expand Up @@ -695,7 +695,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_environmentd",
"//src/adapter:mz_adapter",
Expand Down
2 changes: 1 addition & 1 deletion src/environmentd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mz-environmentd"
description = "Manages a single Materialize environment."
version = "0.130.0-dev.0"
version = "0.131.0-dev.0"
authors = ["Materialize, Inc."]
license = "proprietary"
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion src/materialized/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/clusterd:mz_clusterd",
"//src/environmentd:mz_environmentd",
Expand Down
2 changes: 1 addition & 1 deletion src/materialized/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mz-materialized"
description = "Materialize's unified binary."
version = "0.130.0-dev.0"
version = "0.131.0-dev.0"
edition.workspace = true
rust-version.workspace = true
publish = false
Expand Down
6 changes: 3 additions & 3 deletions src/orchestratord/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rust_library(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -69,7 +69,7 @@ rust_test(
),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
"//src/alloc:mz_alloc",
"//src/alloc-default:mz_alloc_default",
Expand Down Expand Up @@ -120,7 +120,7 @@ rust_binary(
proc_macro_deps = [] + all_crate_deps(proc_macro = True),
rustc_env = {},
rustc_flags = [],
version = "0.130.0-dev.0",
version = "0.131.0-dev.0",
deps = [
":mz_orchestratord",
"//src/alloc:mz_alloc",
Expand Down
Loading

0 comments on commit 27c7d80

Please sign in to comment.