Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oclint-core/cmake/OCLintConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ENDIF()

SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)

SET(OCLINT_VERSION_RELEASE "21.10")
SET(OCLINT_VERSION_RELEASE "22.02")

IF(LLVM_ROOT)
IF(NOT EXISTS ${LLVM_ROOT}/include/llvm)
Expand Down
2 changes: 1 addition & 1 deletion oclint-core/lib/Constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using namespace oclint;

std::string Constants::version()
{
return "21.10";
return "22.02";
}

std::string Constants::homepage()
Expand Down
2 changes: 1 addition & 1 deletion oclint-core/test/VersionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using namespace oclint;

TEST(VersionTest, VersionString)
{
EXPECT_THAT(Constants::version(), StrEq("21.10"));
EXPECT_THAT(Constants::version(), StrEq("22.02"));
}

TEST(VersionTest, HomepageString)
Expand Down
8 changes: 4 additions & 4 deletions oclint-scripts/oclintscripts/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ class url:
json_compilation_database = 'https://github.com/oclint/oclint-json-compilation-database.git'
xcodebuild = 'https://github.com/oclint/oclint-xcodebuild.git'

clang_prebuilt_binary_for_macos = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-apple-darwin.tar.xz'
clang_prebuilt_binary_for_macos_arm64 = 'https://github.com/ryuichis/llvm-builder/releases/download/llvm-13.0.0-m1/llvm-13.0.0-arm64-apple-darwin.tar.xz'
clang_prebuilt_binary_for_ubuntu_lts_20 = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz'
clang_prebuilt_binary_for_ubuntu_lts_20_aarch64 = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-aarch64-linux-gnu.tar.xz'
clang_prebuilt_binary_for_macos = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/clang+llvm-13.0.1-x86_64-apple-darwin.tar.xz'
clang_prebuilt_binary_for_macos_arm64 = 'https://github.com/ryuichis/llvm-builder/releases/download/llvm-13.0.1/llvm-13.0.1-arm64-apple-darwin.tar.xz'
clang_prebuilt_binary_for_ubuntu_lts_20 = 'https://github.com/ryuichis/llvm-builder/releases/download/llvm-13.0.1/llvm-13.0.1-x86_64-linux-gnu-ubuntu-20.04.tar.xz'
clang_prebuilt_binary_for_ubuntu_lts_20_aarch64 = 'https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/clang+llvm-13.0.1-aarch64-linux-gnu.tar.xz'

def cd(dir_path):
os.chdir(dir_path)
Expand Down
4 changes: 2 additions & 2 deletions oclint-scripts/oclintscripts/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def dev_version():
return "src"

def oclint_version():
return "21.10"
return "22.02"

def oclint_dev_version():
return oclint_version() + '.dev.' + dev_version()

def llvm_version():
return "13.0.0"
return "13.0.1"