Bump patch version after integrate 1.8.10 -> 1.8.11
diff --git a/stablehlo/dialect/Version.cpp b/stablehlo/dialect/Version.cpp index 3ef3b7c..c623a47 100644 --- a/stablehlo/dialect/Version.cpp +++ b/stablehlo/dialect/Version.cpp
@@ -83,9 +83,9 @@ case CompatibilityRequirement::NONE: return Version::getCurrentVersion(); case CompatibilityRequirement::WEEK_4: - return Version(1, 8, 7); // WEEK_4 ANCHOR: DO NOT MODIFY + return Version(1, 8, 8); // WEEK_4 ANCHOR: DO NOT MODIFY case CompatibilityRequirement::WEEK_12: - return Version(1, 7, 8); // WEEK_12 ANCHOR: DO NOT MODIFY + return Version(1, 7, 9); // 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 a0309e2..dff9318 100644 --- a/stablehlo/dialect/Version.h +++ b/stablehlo/dialect/Version.h
@@ -38,7 +38,7 @@ static FailureOr<Version> fromString(llvm::StringRef versionRef); /// Return a Version representing the current VHLO dialect version. - static Version getCurrentVersion() { return Version(1, 8, 10); } + static Version getCurrentVersion() { return Version(1, 8, 11); } /// Return a Version representing the minimum supported VHLO dialect version. static Version getMinimumVersion() { return Version(0, 9, 0); }