Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4c9c853
v5.5.0 release prep
Oct 28, 2024
24f782e
Merge branch 'develop' of github.com:xmos/lib_mic_array into release_…
Oct 28, 2024
d033f07
Moved requirements.txt to tests
Oct 28, 2024
798017a
deleted top level index.rst
Oct 28, 2024
42798ce
Call buildDocs() in Jenkinsfile and rename programming_guide/index.rs…
Oct 28, 2024
88aac1a
Fixed settings.yml and README format
Oct 28, 2024
4e8fca6
Removed .github/ISSUE_TEMPLATE
Oct 28, 2024
b6e8bbe
Get README building.
Oct 28, 2024
0be1d9a
Parametrise INFR_APPS_VERSION
Oct 28, 2024
322b5fb
Renamed script/ to python/. Added setup.py
Oct 28, 2024
3c2c504
Replaced references to script/ to python/ in the documentation
Oct 28, 2024
fe343e8
source check
Oct 28, 2024
c33376c
Merge pull request #236 from xmos/test_release_prep
shuchitak Oct 28, 2024
45eb06c
Move cmake/CPM.cmake from top level to tests/custom_cmake_build/
Oct 29, 2024
f42ca63
Rename examples to app
Oct 29, 2024
c89052c
Fix headings
Oct 29, 2024
c3a937b
fix api section heading
Oct 29, 2024
dcb7471
Add reference to figures
Oct 29, 2024
861669e
Fix image reference
Oct 29, 2024
e25741d
Fix image reference
Oct 29, 2024
6d9fb80
Merge pull request #237 from xmos/test_release_prep
shuchitak Oct 29, 2024
d3a2bdf
Fix Jenkinsfile indentation
Oct 29, 2024
4e66af7
checkout shallow
Oct 29, 2024
ce0faac
Add -DDEPS_CLONE_SHALLOW=TRUE to example build
Oct 29, 2024
b9f9b39
Merge pull request #238 from xmos/test_release_prep
shuchitak Oct 29, 2024
0128b1d
copyright check
Oct 29, 2024
4583209
Merge pull request #239 from xmos/test_release_prep
shuchitak Oct 29, 2024
25c2452
Update Doxyfile.inc
xross Oct 29, 2024
7c09459
Update README.rst
xross Oct 29, 2024
183f16d
Merge pull request #240 from xmos/xross-patch-1
shuchitak Oct 29, 2024
1a0823b
Update doc/rst/lib_mic_array.rst
shuchitak Oct 29, 2024
5cbf1b7
Fix title in settings.yml
Oct 29, 2024
f2fc8bf
Changelog
Oct 29, 2024
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
17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/application-note-not-compliant.md

This file was deleted.

18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/example-not-compliant.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-application-note.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-c-api.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/missing-xcore-test.md

This file was deleted.

16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/test-not-compliant.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE/top-level-readme-not-compliant.md

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
lib_mic_array change log
========================

5.5.0
-----

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably need to add something here with all the changes. The rename of examples at least.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

* CHANGED: Documentation updated
* CHANGED: Renamed examples to app_
* CHANGED: Renamed the scripts/ directory to python/

* Changes to dependencies:

- lib_xcore_math: 2.3.0 -> 2.4.0

5.4.0
-----

Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source build is not allowed! Please specify a build folder.\n\tex:cmake -B build")
endif()

include(cmake/CPM.cmake)
include(tests/custom_cmake_build/cmake/CPM.cmake)

# if( PROJECT_IS_TOP_LEVEL )
# message(STATUS "Configuring as top-level project")
# set( DEV_LIB_MIC_ARRAY 1 )
# endif()

# If DEV_LIB_MIC_ARRAY is not defined, set it to true iff the root
# If DEV_LIB_MIC_ARRAY is not defined, set it to true iff the root
# build dir (CMAKE_BINARY_DIR) is a child of the current source dir.
# This will tell us whether to include the demos and tests.
if(NOT DEFINED DEV_LIB_MIC_ARRAY)
Expand All @@ -24,7 +24,7 @@ if(NOT DEFINED DEV_LIB_MIC_ARRAY)
endif()
endif()

project(lib_mic_array
project(lib_mic_array
VERSION 5.0.1
LANGUAGES CXX C ASM)

Expand Down
Loading