Skip to content

Commit

Permalink
Pump version to 22.02
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichis committed Feb 20, 2022
1 parent a537871 commit ea10bdb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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
2 changes: 1 addition & 1 deletion oclint-scripts/oclintscripts/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def dev_version():
return "src"

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

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

0 comments on commit ea10bdb

Please sign in to comment.