Thanks to visit codestin.com
Credit goes to github.com

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
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion modules/trycatch/lib_trycatch
Submodule lib_trycatch updated 0 files
2 changes: 1 addition & 1 deletion modules/xcore_math/lib_xcore_math
Submodule lib_xcore_math updated 407 files
2 changes: 1 addition & 1 deletion settings.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading