Skip to content

Commit f991841

Browse files
committed
chore: bump version to 260712.2.0
# Summary Bump the workspace release version to 260712.2.0. # Details No gRPC or raft compatibility change. The changelog gains a 260712.2.0 entry (min client/server unchanged at 1.2.676 / 260217.0.0), and the version-string assertions are updated to match. Refresh the raft-protocol-compat/bin-current lockfile so its databend-meta path-dependency entries track 260712.2.0.
1 parent ebfb362 commit f991841

6 files changed

Lines changed: 41 additions & 19 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "260629.0.0"
2+
version = "260712.2.0"
33
authors = ["Databend Authors <opensource@datafuselabs.com>"]
44
license = "Apache-2.0"
55
publish = false

crates/common/version/src/bin/raft-compat.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fn candidate_versions() -> Vec<Version> {
5858
versions.push(Version::new(1, 2, patch));
5959
}
6060

61-
for minor in 0..=10 {
61+
for minor in 0..=14 {
6262
versions.push(Version::new(260205, minor, 0));
6363
}
6464
for minor in 0..=10 {
@@ -67,11 +67,14 @@ fn candidate_versions() -> Vec<Version> {
6767
for minor in 0..=3 {
6868
versions.push(Version::new(260428, minor, 0));
6969
}
70-
for minor in 0..=3 {
70+
for minor in 0..=5 {
7171
versions.push(Version::new(260512, minor, 0));
7272
}
73-
versions.push(Version::new(260628, 0, 0));
73+
for minor in 0..=1 {
74+
versions.push(Version::new(260628, minor, 0));
75+
}
7476
versions.push(Version::new(260629, 0, 0));
77+
versions.push(Version::new(260712, 0, 0));
7578

7679
versions
7780
}

crates/common/version/src/grpc_changelog.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,24 @@ pub fn grpc_changelog() -> BTreeMap<Version, GrpcVersionCompat> {
210210
min_server: ver(260217, 0, 0),
211211
});
212212

213+
// 260712.0.0: no grpc compatibility change.
214+
m.insert(ver(260712, 0, 0), GrpcVersionCompat {
215+
min_client: ver(1, 2, 676),
216+
min_server: ver(260217, 0, 0),
217+
});
218+
219+
// 260712.1.0: no grpc compatibility change.
220+
m.insert(ver(260712, 1, 0), GrpcVersionCompat {
221+
min_client: ver(1, 2, 676),
222+
min_server: ver(260217, 0, 0),
223+
});
224+
225+
// 260712.2.0: no grpc compatibility change.
226+
m.insert(ver(260712, 2, 0), GrpcVersionCompat {
227+
min_client: ver(1, 2, 676),
228+
min_server: ver(260217, 0, 0),
229+
});
230+
213231
m
214232
}
215233

crates/common/version/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,17 @@ mod tests {
140140

141141
#[test]
142142
fn test_version_string() {
143-
assert_eq!(version_str(), "260629.0.0");
143+
assert_eq!(version_str(), "260712.2.0");
144144
}
145145

146146
#[test]
147147
fn test_semver_components() {
148-
assert_eq!(semver_tuple(version()), (260629, 0, 0));
148+
assert_eq!(semver_tuple(version()), (260712, 2, 0));
149149
}
150150

151151
#[test]
152152
fn test_semver_display() {
153-
assert_eq!(version().to_semver().to_string(), "260629.0.0");
153+
assert_eq!(version().to_semver().to_string(), "260712.2.0");
154154
}
155155

156156
#[test]

crates/tests/raft-protocol-compat/bin-current/Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/grpc-compat-history.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ version MIN_CLIENT MIN_SERVER
55
260428.0.0 1.2.676 260217.0.0
66
260512.0.0 1.2.676 260217.0.0
77
260628.0.0 1.2.676 260217.0.0
8+
260712.0.0 1.2.676 260217.0.0

0 commit comments

Comments
 (0)