From 29f3a6fae0a1beb9145ef71f23eb7b1763dae15f Mon Sep 17 00:00:00 2001 From: Kevin Gleason Date: Fri, 13 Sep 2024 18:57:45 +0000 Subject: [PATCH] Bump 4w and 12w version numberst push --- stablehlo/dialect/Version.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stablehlo/dialect/Version.cpp b/stablehlo/dialect/Version.cpp index 189f37bb943..93da3b8b7a9 100644 --- a/stablehlo/dialect/Version.cpp +++ b/stablehlo/dialect/Version.cpp @@ -80,13 +80,13 @@ Version Version::fromCompatibilityRequirement( case CompatibilityRequirement::NONE: return Version::getCurrentVersion(); case CompatibilityRequirement::WEEK_4: - return Version(1, 3, 0); // v1.3.0 - Jul 15, 2024 + return Version(1, 5, 0); // v1.3.0 - Aug 1, 2024 case CompatibilityRequirement::WEEK_12: - return Version(1, 0, 0); // v1.0.0 - May 14, 2024 + return Version(1, 1, 0); // v1.1.0 - May 30, 2024 case CompatibilityRequirement::MAX: return Version::getMinimumVersion(); } - llvm_unreachable("Unhandled case"); + llvm::report_fatal_error("Unhandled compatibility requirement"); } mlir::Diagnostic& operator<<(mlir::Diagnostic& diag, const Version& version) {