Skip to content

Commit e3ae120

Browse files
authored
Bump patch version after integrate 1.10.4 -> 1.10.5 (#2776)
1 parent 515c8ef commit e3ae120

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stablehlo/dialect/Version.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Version Version::fromCompatibilityRequirement(
8383
case CompatibilityRequirement::NONE:
8484
return Version::getCurrentVersion();
8585
case CompatibilityRequirement::WEEK_4:
86-
return Version(1, 9, 5); // WEEK_4 ANCHOR: DO NOT MODIFY
86+
return Version(1, 9, 7); // WEEK_4 ANCHOR: DO NOT MODIFY
8787
case CompatibilityRequirement::WEEK_12:
88-
return Version(1, 8, 8); // WEEK_12 ANCHOR: DO NOT MODIFY
88+
return Version(1, 8, 9); // WEEK_12 ANCHOR: DO NOT MODIFY
8989
case CompatibilityRequirement::MAX:
9090
return Version::getMinimumVersion();
9191
}

stablehlo/dialect/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Version {
3838
static FailureOr<Version> fromString(llvm::StringRef versionRef);
3939

4040
/// Return a Version representing the current VHLO dialect version.
41-
static Version getCurrentVersion() { return Version(1, 10, 4); }
41+
static Version getCurrentVersion() { return Version(1, 10, 5); }
4242

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

0 commit comments

Comments
 (0)