Skip to content

Commit 960b231

Browse files
authored
Bump patch version after integrate 1.8.8 -> 1.8.9 (#2677)
1 parent 38bb2f9 commit 960b231

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stablehlo/dialect/Version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Version Version::fromCompatibilityRequirement(
8585
case CompatibilityRequirement::WEEK_4:
8686
return Version(1, 8, 3); // WEEK_4 ANCHOR: DO NOT MODIFY
8787
case CompatibilityRequirement::WEEK_12:
88-
return Version(1, 7, 3); // WEEK_12 ANCHOR: DO NOT MODIFY
88+
return Version(1, 7, 5); // WEEK_12 ANCHOR: DO NOT MODIFY
8989
case CompatibilityRequirement::MAX:
9090
return Version::getMinimumVersion();
9191
}

stablehlo/dialect/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Version {
3838
static FailureOr<Version> fromString(llvm::StringRef versionRef);
3939

4040
/// Return a Version representing the current VHLO dialect version.
41-
static Version getCurrentVersion() { return Version(1, 8, 8); }
41+
static Version getCurrentVersion() { return Version(1, 8, 9); }
4242

4343
/// Return a Version representing the minimum supported VHLO dialect version.
4444
static Version getMinimumVersion() { return Version(0, 9, 0); }

0 commit comments

Comments
 (0)