Skip to content

Commit 3acda59

Browse files
authored
Bump patch version after integrate 1.13.3 -> 1.13.4 (#2871)
1 parent 3f27c53 commit 3acda59

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, 13, 0); // WEEK_4 ANCHOR: DO NOT MODIFY
86+
return Version(1, 13, 1); // WEEK_4 ANCHOR: DO NOT MODIFY
8787
case CompatibilityRequirement::WEEK_12:
88-
return Version(1, 12, 1); // WEEK_12 ANCHOR: DO NOT MODIFY
88+
return Version(1, 12, 2); // 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, 3); }
41+
static Version getCurrentVersion() { return Version(1, 13, 4); }
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)