diff --git a/stablehlo/dialect/Version.cpp b/stablehlo/dialect/Version.cpp index bd3747001b..49589cfa42 100644 --- a/stablehlo/dialect/Version.cpp +++ b/stablehlo/dialect/Version.cpp @@ -83,9 +83,9 @@ Version Version::fromCompatibilityRequirement( case CompatibilityRequirement::NONE: return Version::getCurrentVersion(); case CompatibilityRequirement::WEEK_4: - return Version(1, 8, 2); // WEEK_4 ANCHOR: DO NOT MODIFY + return Version(1, 8, 3); // WEEK_4 ANCHOR: DO NOT MODIFY case CompatibilityRequirement::WEEK_12: - return Version(1, 7, 1); // WEEK_12 ANCHOR: DO NOT MODIFY + return Version(1, 7, 3); // WEEK_12 ANCHOR: DO NOT MODIFY case CompatibilityRequirement::MAX: return Version::getMinimumVersion(); } diff --git a/stablehlo/dialect/Version.h b/stablehlo/dialect/Version.h index 3701b0304e..836223a3db 100644 --- a/stablehlo/dialect/Version.h +++ b/stablehlo/dialect/Version.h @@ -38,7 +38,7 @@ class Version { static FailureOr fromString(llvm::StringRef versionRef); /// Return a Version representing the current VHLO dialect version. - static Version getCurrentVersion() { return Version(1, 8, 7); } + static Version getCurrentVersion() { return Version(1, 8, 8); } /// Return a Version representing the minimum supported VHLO dialect version. static Version getMinimumVersion() { return Version(0, 9, 0); }