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
14 changes: 11 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
lib_mic_array change log
========================

UNRELEASED
----------
4.6.0
-----

* ADDED: Support for XCommon CMake build system

* Changes to dependencies:

- lib_dsp: 3.0.0 -> 6.3.0

- lib_logging: 2.0.0 -> 3.2.0

* ADDED: Support for XCommon CMake build system
- lib_xassert: 2.0.0 -> 4.2.0

4.5.0
-----
Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@Library('xmos_jenkins_shared_library@v0.18.0') _
getApproval()
getApproval( )

pipeline {
agent {
label 'x86_64 && linux'
label 'x86_64 && linux && axe'
}
environment {
REPO = 'lib_mic_array'
Expand Down
8 changes: 4 additions & 4 deletions lib_mic_array/lib_build_info.cmake
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
set(LIB_NAME lib_mic_array)
set(LIB_VERSION 4.5.0)
set(LIB_VERSION 4.6.0)
set(LIB_INCLUDES api src/fir)

# Want to exclude src/fir/make_mic_dual_stage_3_coefs.c
# There are no other C source files, so set an empty string.
set(LIB_C_SRCS "")

set(LIB_DEPENDENT_MODULES "lib_xassert"
"lib_logging"
"lib_dsp")
set(LIB_DEPENDENT_MODULES "lib_xassert(4.2.0)"
"lib_logging(3.2.0)"
"lib_dsp(6.3.0)")

XMOS_REGISTER_MODULE()
6 changes: 3 additions & 3 deletions lib_mic_array/module_build_info
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION = 4.5.0
VERSION = 4.6.0

DEPENDENT_MODULES = lib_xassert(>=4.0.0) \
lib_logging(>=3.0.0) \
DEPENDENT_MODULES = lib_xassert(>=4.2.0) \
lib_logging(>=3.2.0) \
lib_dsp(>=6.0.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.

Also want 6.3.0 in module_build_info.


MODULE_XCC_FLAGS = $(XCC_FLAGS)
Expand Down