Skip to content

Commit

Permalink
Bump patch version after integrate 1.8.4 -> 1.8.5 (#2651)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghpvnist authored Dec 2, 2024
1 parent 7a7baa0 commit db2ce93
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, 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();
}
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, 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); }
Expand Down

0 comments on commit db2ce93

Please sign in to comment.