Skip to content

Commit d3c298a

Browse files
committed
chore: v0.28.0
1 parent d8857cc commit d3c298a

File tree

5 files changed

+22
-18
lines changed

5 files changed

+22
-18
lines changed

.github/workflows/docs.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: docs
22
on:
3-
push:
4-
tags:
5-
- "*"
3+
pull_request:
64

75
jobs:
86
Test:
@@ -34,11 +32,12 @@ jobs:
3432
- name: Build Documentation
3533
run: task docs
3634

37-
- name: Deploy Documentation
38-
uses: Cecilapp/GitHub-Pages-deploy@v3
39-
with:
40-
build_dir: docs/build/html/
41-
branch: gh-pages
42-
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
# TODO Automatic deploys fail
36+
# - name: Deploy Documentation
37+
# uses: Cecilapp/GitHub-Pages-deploy@v3
38+
# with:
39+
# build_dir: docs/build/html/
40+
# branch: gh-pages
41+
42+
# env:
43+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,17 @@ cmake_minimum_required(VERSION 3.20)
6060
# If commented, the latest supported standard for your compiler is automatically set.
6161
# set(CMAKE_CXX_STANDARD 20)
6262
63+
include(FetchContent)
64+
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
65+
cmake_policy(SET CMP0135 NEW)
66+
endif()
67+
6368
# Add project_options from https://github.com/aminya/project_options
6469
# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
65-
include(FetchContent)
66-
FetchContent_Declare(_project_options URL
67-
https://github.com/aminya/project_options/archive/refs/tags/v0.27.2.zip
68-
)
70+
set(PROJECT_OPTIONS_VERSION "v0.28.0")
71+
FetchContent_Declare(
72+
_project_options
73+
URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)
6974
FetchContent_MakeAvailable(_project_options)
7075
include(${_project_options_SOURCE_DIR}/Index.cmake)
7176

docs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.25)
55

66
project(
77
project_options_docs
8-
VERSION 0.27.2
8+
VERSION 0.28.0
99
DESCRIPTION "Documentation"
1010
LANGUAGES NONE)
1111

docs/src/dynamic_project_options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ endif()
3737
3838
# Add project_options from https://github.com/aminya/project_options
3939
# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
40-
set(PROJECT_OPTIONS_VERSION "v0.27.2")
40+
set(PROJECT_OPTIONS_VERSION "v0.28.0")
4141
FetchContent_Declare(
4242
_project_options
4343
URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)

docs/src/project_options_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ endif()
2020
2121
# Add project_options from https://github.com/aminya/project_options
2222
# Change the version in the following URL to update the package (watch the releases of the repository for future updates)
23-
set(PROJECT_OPTIONS_VERSION "v0.27.2")
23+
set(PROJECT_OPTIONS_VERSION "v0.28.0")
2424
FetchContent_Declare(
2525
_project_options
2626
URL https://github.com/aminya/project_options/archive/refs/tags/${PROJECT_OPTIONS_VERSION}.zip)

0 commit comments

Comments
 (0)