Skip to content

Commit

Permalink
Bump patch version after integrate 1.8.3 -> 1.8.4 (#2626)
Browse files Browse the repository at this point in the history
  • Loading branch information
GleasonK authored Nov 15, 2024
1 parent b1c1115 commit f151a38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stablehlo/dialect/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Version Version::fromCompatibilityRequirement(
case CompatibilityRequirement::NONE:
return Version::getCurrentVersion();
case CompatibilityRequirement::WEEK_4:
return Version(1, 7, 7); // WEEK_4 ANCHOR: DO NOT MODIFY
return Version(1, 7, 8); // WEEK_4 ANCHOR: DO NOT MODIFY
case CompatibilityRequirement::WEEK_12:
return Version(1, 6, 0); // WEEK_12 ANCHOR: DO NOT MODIFY
case CompatibilityRequirement::MAX:
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, 3); }
static Version getCurrentVersion() { return Version(1, 8, 4); }

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

0 comments on commit f151a38

Please sign in to comment.