diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 190874c..36087d2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -36,19 +36,19 @@ jobs: uses: actions/checkout@v2 with: submodules: recursive - + - name: Pull documentation builder docker image run: | docker pull ${DOC_BUILDER_IMAGE} - + - name: Build documentation run: | docker run --rm -t -u "$(id -u):$(id -g)" -v ${{ github.workspace }}:/build ${DOC_BUILDER_IMAGE} -vv - name: Save HTML documentation artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: fwk_core_docs_html path: ./doc/_build/html - if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` + if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` retention-days: 5 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d43418d..02d5f3f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Core Framework change log ========================= +1.1.0 +----- + + * CHANGED: Updated lib_xcore_math to v2.4.0 from v2.3.1. + * CHANGED: Updated lib_random to v1.2.0 from v1.1.0. + 1.0.2 ----- diff --git a/CMakeLists.txt b/CMakeLists.txt index 07feebf..d9fb413 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ add_subdirectory(modules) ## Add targets for when this is the top level project if(PROJECT_IS_TOP_LEVEL) - include(examples/examples.cmake) + include(examples/example.cmake) endif() if(FRAMEWORK_CORE_TESTS) diff --git a/index.rst b/index.rst index acac9d8..5fe206a 100644 --- a/index.rst +++ b/index.rst @@ -14,4 +14,4 @@ Optimized :maxdepth: 1 :includehidden: - modules/xcore_math/lib_xcore_math/index.rst + modules/xcore_math/lib_xcore_math/doc/rst/lib_xcore_math diff --git a/modules/random/lib_random b/modules/random/lib_random index 6e4faee..24b08fa 160000 --- a/modules/random/lib_random +++ b/modules/random/lib_random @@ -1 +1 @@ -Subproject commit 6e4faee877784eb3401a828de2234e6f8319f174 +Subproject commit 24b08fa43e4de8c4fe28d055e2512e7aa0f2eb9f diff --git a/modules/trycatch/lib_trycatch b/modules/trycatch/lib_trycatch index e8c07ac..5a24425 160000 --- a/modules/trycatch/lib_trycatch +++ b/modules/trycatch/lib_trycatch @@ -1 +1 @@ -Subproject commit e8c07ac9cc2922038f0b45ed4ab34a397daa037f +Subproject commit 5a244256cb84853547a3f90d3c8bf12b02e4f7ac diff --git a/modules/xcore_math/lib_xcore_math b/modules/xcore_math/lib_xcore_math index 793ecad..9e730e0 160000 --- a/modules/xcore_math/lib_xcore_math +++ b/modules/xcore_math/lib_xcore_math @@ -1 +1 @@ -Subproject commit 793ecad9ba7b36be314a700f0410e93734450c1a +Subproject commit 9e730e0796d66df20d6af2c9356ae5fd3f0aa045 diff --git a/settings.yml b/settings.yml index 73b3fcd..5e84fae 100644 --- a/settings.yml +++ b/settings.yml @@ -1,7 +1,7 @@ --- project: fwk_core title: XCORE Core Framework -version: 1.0.2 +version: 1.1.0 documentation: exclude_patterns_path: doc/exclude_patterns.inc