Skip to content

Commit b6cb0ca

Browse files
Use v1.2.1 in example projects (#72)
1 parent 4d797f1 commit b6cb0ca

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/bazel-project/MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ archive_override(
2020
"echo '" + msd_channel_module + "' > MODULE.bazel",
2121
"echo '" + msd_channel_build + "' > BUILD.bazel",
2222
],
23-
urls = ["https://github.com/andreiavrammsd/cpp-channel/archive/refs/tags/v1.0.0.zip"],
24-
strip_prefix = "cpp-channel-1.0.0",
25-
integrity = "sha256-oPKZnQYPv0emOcjIcYMeZ6q9tUyOxuAARY+xvbYKHHw=",
23+
urls = ["https://github.com/andreiavrammsd/cpp-channel/archive/refs/tags/v1.2.1.zip"],
24+
strip_prefix = "cpp-channel-1.2.1",
25+
integrity = "sha256-fGew8OKF/gWyjkupXFiu+nPxTHgOfI2Ixs8wSxv9+gA=",
2626
)

examples/cmake-project/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ target_link_libraries(cmake_project)
1414

1515
include(FetchContent)
1616
if (NOT channel_POPULATED)
17-
FetchContent_Declare(channel URL https://github.com/andreiavrammsd/cpp-channel/archive/v1.0.0.zip DOWNLOAD_EXTRACT_TIMESTAMP TRUE)
17+
FetchContent_Declare(channel URL https://github.com/andreiavrammsd/cpp-channel/archive/v1.2.1.zip DOWNLOAD_EXTRACT_TIMESTAMP TRUE)
1818
FetchContent_Populate(channel)
1919
include_directories(${channel_SOURCE_DIR}/include)
2020
# OR

0 commit comments

Comments
 (0)