Skip to content

Commit

Permalink
Merge branch 'dev' to release version v0.9.2
Browse files Browse the repository at this point in the history
Signed-off-by: Certseeds <[email protected]>
  • Loading branch information
Certseeds committed Feb 11, 2023
2 parents b784e68 + 4a419e9 commit 3fdd109
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ jobs:
run: sudo apt-get install tree; tree; mkdir -p ./cmake_build_release

- name: cmake install dependencies
run: cmake -S . -B ./cmake_build_release -DCMAKE_BUILD_TYPE=Debug
run: |
cmake -S . -B ./cmake_build_release -DCMAKE_BUILD_TYPE=Debug
rm -rf ./cmake_build_release
- name: move cmake-fetchcontent to folder
working-directory: ./third_party
Expand Down Expand Up @@ -177,7 +179,9 @@ jobs:
sudo apt-get update && sudo apt-get install libopencv-dev
- name: cmake install dependencies
run: cmake -S . -B ./cmake_build_release -DCMAKE_BUILD_TYPE=Debug
run: |
cmake -S . -B ./cmake_build_release -DCMAKE_BUILD_TYPE=Debug
rm -rf ./cmake_build_release
- name: move cmake-fetchcontent to folder
working-directory: ./third_party
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.6)

set(PROJECT_VERSION_MAJOR 0)
set(PROJECT_VERSION_MINOR 9)
set(PROJECT_VERSION_PATCH 1) # delete endsWith strs when master merge dev
set(PROJECT_VERSION_PATCH 2) # delete endsWith strs when master merge dev

project(CS203_DSAA_template
DESCRIPTION "Template for Algorithm Based on C++11 and Modern CMake"
Expand Down

0 comments on commit 3fdd109

Please sign in to comment.