Skip to content

Commit 65e7612

Browse files
authored
Bump patch version after integrate 1.13.4 -> 1.13.5 (#2877)
1 parent dfafb2e commit 65e7612

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stablehlo/dialect/Version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Version Version::fromCompatibilityRequirement(
8585
case CompatibilityRequirement::WEEK_4:
8686
return Version(1, 13, 1); // WEEK_4 ANCHOR: DO NOT MODIFY
8787
case CompatibilityRequirement::WEEK_12:
88-
return Version(1, 12, 2); // WEEK_12 ANCHOR: DO NOT MODIFY
88+
return Version(1, 13, 0); // 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, 13, 4); }
41+
static Version getCurrentVersion() { return Version(1, 13, 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)