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
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.12)
project(cpp_channel)
set(PROJECT_VERSION 0.8.3)
set(PROJECT_VERSION 1.0.0)

set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard")
set(CMAKE_CXX_STANDARD_REQUIRED YES)
Expand Down
4 changes: 2 additions & 2 deletions examples/bazel-project/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ archive_override(
"echo '" + msd_channel_module + "' > MODULE.bazel",
"echo '" + msd_channel_build + "' > BUILD.bazel",
],
urls = ["https://github.com/andreiavrammsd/cpp-channel/archive/refs/tags/v0.8.3.zip"],
strip_prefix = "cpp-channel-0.8.3",
urls = ["https://github.com/andreiavrammsd/cpp-channel/archive/refs/tags/v1.0.0.zip"],
strip_prefix = "cpp-channel-1.0.0",
integrity = "sha256-CVEC3XvmoghyBvwi7C4ytOtofyX41X02NVKQ/7ID5Nc=",
)
2 changes: 1 addition & 1 deletion examples/cmake-project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ target_link_libraries(cmake_project)

include(FetchContent)
if (NOT channel_POPULATED)
FetchContent_Declare(channel URL https://github.com/andreiavrammsd/cpp-channel/archive/v0.8.3.zip)
FetchContent_Declare(channel URL https://github.com/andreiavrammsd/cpp-channel/archive/v1.0.0.zip)
FetchContent_Populate(channel)
include_directories(${channel_SOURCE_DIR}/include)
# OR
Expand Down