From 01baa234a3324e58995d787d6c136f9b3a03df98 Mon Sep 17 00:00:00 2001 From: Sandeep Dasgupta Date: Wed, 22 Jan 2025 12:18:38 -0800 Subject: [PATCH] Bump patch version after integrate 1.8.10 -> 1.8.11 (#2692) --- stablehlo/dialect/Version.cpp | 4 ++-- stablehlo/dialect/Version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stablehlo/dialect/Version.cpp b/stablehlo/dialect/Version.cpp index 3ef3b7ca07..c623a47be6 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, 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 a0309e2dfa..dff93181d1 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, 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); }