Skip to content

Commit

Permalink
Bump patch version after integrate 1.8.7 -> 1.8.8 (#2672)
Browse files Browse the repository at this point in the history
  • Loading branch information
GleasonK authored Dec 18, 2024
1 parent 1ff299e commit 33f19a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions stablehlo/dialect/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ Version Version::fromCompatibilityRequirement(
case CompatibilityRequirement::NONE:
return Version::getCurrentVersion();
case CompatibilityRequirement::WEEK_4:
return Version(1, 8, 2); // WEEK_4 ANCHOR: DO NOT MODIFY
return Version(1, 8, 3); // WEEK_4 ANCHOR: DO NOT MODIFY
case CompatibilityRequirement::WEEK_12:
return Version(1, 7, 1); // WEEK_12 ANCHOR: DO NOT MODIFY
return Version(1, 7, 3); // WEEK_12 ANCHOR: DO NOT MODIFY
case CompatibilityRequirement::MAX:
return Version::getMinimumVersion();
}
Expand Down
2 changes: 1 addition & 1 deletion stablehlo/dialect/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Version {
static FailureOr<Version> fromString(llvm::StringRef versionRef);

/// Return a Version representing the current VHLO dialect version.
static Version getCurrentVersion() { return Version(1, 8, 7); }
static Version getCurrentVersion() { return Version(1, 8, 8); }

/// Return a Version representing the minimum supported VHLO dialect version.
static Version getMinimumVersion() { return Version(0, 9, 0); }
Expand Down

0 comments on commit 33f19a4

Please sign in to comment.