From db2ce93922933fc21e17311b4b001c25b46024e7 Mon Sep 17 00:00:00 2001 From: Gunhyun Park Date: Mon, 2 Dec 2024 07:48:58 -0800 Subject: [PATCH] Bump patch version after integrate 1.8.4 -> 1.8.5 (#2651) --- 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 4de7b010cb..749e435b92 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, 7, 8); // WEEK_4 ANCHOR: DO NOT MODIFY + return Version(1, 8, 1); // WEEK_4 ANCHOR: DO NOT MODIFY case CompatibilityRequirement::WEEK_12: - return Version(1, 6, 0); // WEEK_12 ANCHOR: DO NOT MODIFY + return Version(1, 6, 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 59df0d1db3..3148fc187f 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, 4); } + static Version getCurrentVersion() { return Version(1, 8, 5); } /// Return a Version representing the minimum supported VHLO dialect version. static Version getMinimumVersion() { return Version(0, 9, 0); }