From 89bad93a22fe9c348497a04dd95d3e7dd1643f95 Mon Sep 17 00:00:00 2001 From: Sandeep Dasgupta Date: Thu, 16 Jan 2025 00:27:13 +0000 Subject: [PATCH] Bump patch version after integrate 1.8.9 -> 1.8.10 --- 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 262f86e356..3ef3b7ca07 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, 3); // WEEK_4 ANCHOR: DO NOT MODIFY + return Version(1, 8, 7); // WEEK_4 ANCHOR: DO NOT MODIFY case CompatibilityRequirement::WEEK_12: - return Version(1, 7, 5); // WEEK_12 ANCHOR: DO NOT MODIFY + return Version(1, 7, 8); // 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 e56c4ceccb..a0309e2dfa 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, 9); } + static Version getCurrentVersion() { return Version(1, 8, 10); } /// Return a Version representing the minimum supported VHLO dialect version. static Version getMinimumVersion() { return Version(0, 9, 0); }