Skip to content

Commit

Permalink
Change version string to 'swift-5.9.1-RELEASE'
Browse files Browse the repository at this point in the history
  • Loading branch information
shahmishal committed Oct 17, 2023
1 parent 490c843 commit acad906
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions lib/Basic/Version.cpp
Expand Up @@ -247,30 +247,7 @@ std::string getSwiftFullVersion(Version effectiveVersion) {
OS << SWIFT_VENDOR " ";
#endif

OS << "Swift version " SWIFT_VERSION_STRING;
#ifndef SWIFT_COMPILER_VERSION
OS << "-dev";
#endif

if (effectiveVersion != Version::getCurrentLanguageVersion()) {
OS << " effective-" << effectiveVersion;
}

#if defined(SWIFT_COMPILER_VERSION)
OS << " (swiftlang-" SWIFT_COMPILER_VERSION;
#if defined(CLANG_COMPILER_VERSION)
OS << " clang-" CLANG_COMPILER_VERSION;
#endif
OS << ")";
#elif defined(LLVM_REVISION) || defined(SWIFT_REVISION)
OS << " (";
printFullRevisionString(OS);
OS << ")";
#endif

// Suppress unused function warning
(void)&printFullRevisionString;

OS << "Swift version " SWIFT_VERSION_STRING " (swift-5.9.1-RELEASE)";
return OS.str();
}

Expand Down

0 comments on commit acad906

Please sign in to comment.