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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set(AGENT_VERSION_MAJOR 2)
set(AGENT_VERSION_MINOR 6)
set(AGENT_VERSION_PATCH 0)
set(AGENT_VERSION_BUILD 1)
set(AGENT_VERSION_BUILD 2)
set(AGENT_VERSION_RC "")

# This minimum version is to support Visual Studio 2019 and C++ feature checking and FetchContent
Expand Down
1 change: 1 addition & 0 deletions conan/oniguruma/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def generate(self):
tc = CMakeToolchain(self)
tc.variables["ENABLE_POSIX_API"] = self.options.posix_api
tc.variables["ENABLE_BINARY_COMPATIBLE_POSIX_API"] = self.options.posix_api
tc.variables["BUILD_TEST"] = False
if Version(self.version) >= "6.9.8":
tc.variables["INSTALL_DOCUMENTATION"] = False
tc.variables["INSTALL_EXAMPLES"] = False
Expand Down