diff --git a/.github/workflows/deploy-pypi-testing.yml b/.github/workflows/deploy-pypi-testing.yml index a72d1bd..670ae48 100644 --- a/.github/workflows/deploy-pypi-testing.yml +++ b/.github/workflows/deploy-pypi-testing.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: PyPITestingDeploy: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index afd24bb..65a1a39 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: PyPIDeploy: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 034f019..9cfca52 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,21 +4,12 @@ on: [push, pull_request] jobs: TestC: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - images: ["debian:buster", "debian:bullseye", "ubuntu:20.04"] - include: - - images: "debian:buster" - label: "Debian_10" - - images: "debian:bullseye" - label: "Debian_11" - - images: "ubuntu:20.04" - label: "Ubuntu_20_04" - - container: - image: ${{ matrix.images }} + os: [ubuntu-20.04, ubuntu-22.04] + steps: - uses: actions/checkout@v4 - name: Set up Python 3.7 @@ -48,7 +39,7 @@ jobs: - name: Archive generated SOs uses: actions/upload-artifact@v4 with: - name: ${{ matrix.label }}-Build + name: ${{ matrix.os }}-Build path: libs/ # TestCCentOS: @@ -88,7 +79,7 @@ jobs: # path: libs/ CoverageTest: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -137,15 +128,15 @@ jobs: sudo make install TestPython: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} @@ -163,7 +154,7 @@ jobs: for f in examples/*.py; do python "$f"; done Lint: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: @@ -186,4 +177,4 @@ jobs: pre-commit run --all-files 2> /dev/null ec=$? git diff -U0 > log.txt && cat log.txt - exit $ec \ No newline at end of file + exit $ec diff --git a/bindings/c/include/cgenalyzer.h b/bindings/c/include/cgenalyzer.h index f43d6e4..79b2afb 100644 --- a/bindings/c/include/cgenalyzer.h +++ b/bindings/c/include/cgenalyzer.h @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef CGENALYZER_H diff --git a/bindings/c/include/cgenalyzer_private.h b/bindings/c/include/cgenalyzer_private.h index 76619e8..45f9407 100644 --- a/bindings/c/include/cgenalyzer_private.h +++ b/bindings/c/include/cgenalyzer_private.h @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef CGENALYZER_PRIVATE_H diff --git a/bindings/c/include/cgenalyzer_simplified_beta.h b/bindings/c/include/cgenalyzer_simplified_beta.h index 3e7529f..3b63a83 100644 --- a/bindings/c/include/cgenalyzer_simplified_beta.h +++ b/bindings/c/include/cgenalyzer_simplified_beta.h @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef CGENALYZER_SIMPLIFIED_BETA_H diff --git a/bindings/c/src/cgenalyzer.cpp b/bindings/c/src/cgenalyzer.cpp index 9024dcf..bcb6c5e 100644 --- a/bindings/c/src/cgenalyzer.cpp +++ b/bindings/c/src/cgenalyzer.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "cgenalyzer.h" diff --git a/bindings/c/src/cgenalyzer_simplified_beta.cpp b/bindings/c/src/cgenalyzer_simplified_beta.cpp index b38e435..d7c9885 100644 --- a/bindings/c/src/cgenalyzer_simplified_beta.cpp +++ b/bindings/c/src/cgenalyzer_simplified_beta.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "cgenalyzer_simplified_beta.h" diff --git a/bindings/python/genalyzer/__init__.py b/bindings/python/genalyzer/__init__.py index 2ffaeda..14bc737 100644 --- a/bindings/python/genalyzer/__init__.py +++ b/bindings/python/genalyzer/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later """Python bindings for Genalyzer""" diff --git a/bindings/python/genalyzer/helpers/__init__.py b/bindings/python/genalyzer/helpers/__init__.py index 2d572aa..b28d6e4 100644 --- a/bindings/python/genalyzer/helpers/__init__.py +++ b/bindings/python/genalyzer/helpers/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later try: diff --git a/bindings/python/genalyzer/helpers/waveform_gen.py b/bindings/python/genalyzer/helpers/waveform_gen.py index 64e94a8..28b5daa 100644 --- a/bindings/python/genalyzer/helpers/waveform_gen.py +++ b/bindings/python/genalyzer/helpers/waveform_gen.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later from ..simplified_beta import ( diff --git a/bindings/python/genalyzer/pygenalyzer.py b/bindings/python/genalyzer/pygenalyzer.py index 10b392f..63a6e25 100644 --- a/bindings/python/genalyzer/pygenalyzer.py +++ b/bindings/python/genalyzer/pygenalyzer.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later diff --git a/bindings/python/genalyzer/simplified_beta/__init__.py b/bindings/python/genalyzer/simplified_beta/__init__.py index e720414..5c84f4a 100644 --- a/bindings/python/genalyzer/simplified_beta/__init__.py +++ b/bindings/python/genalyzer/simplified_beta/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later from .simplified_beta import ( diff --git a/bindings/python/genalyzer/simplified_beta/simplified_beta.py b/bindings/python/genalyzer/simplified_beta/simplified_beta.py index 49b6d50..c600094 100644 --- a/bindings/python/genalyzer/simplified_beta/simplified_beta.py +++ b/bindings/python/genalyzer/simplified_beta/simplified_beta.py @@ -1,4 +1,4 @@ -# Copyright (C) 2024 Analog Devices, Inc. +# Copyright (C) 2024-2025 Analog Devices, Inc. # # SPDX short identifier: ADIBSD OR GPL-2.0-or-later diff --git a/include/array_ops.hpp b/include/array_ops.hpp index 761de33..30b98d4 100644 --- a/include/array_ops.hpp +++ b/include/array_ops.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_ARRAY_OPS_HPP diff --git a/include/code_density.hpp b/include/code_density.hpp index c0e17cb..0c3ea56 100644 --- a/include/code_density.hpp +++ b/include/code_density.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_CODE_DENSITY_HPP diff --git a/include/constants.hpp b/include/constants.hpp index 0989819..7bb437a 100644 --- a/include/constants.hpp +++ b/include/constants.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_CONSTANTS_HPP diff --git a/include/enum_map.hpp b/include/enum_map.hpp index 568a7f8..5e0a007 100644 --- a/include/enum_map.hpp +++ b/include/enum_map.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_ENUM_MAP_HPP diff --git a/include/enum_maps.hpp b/include/enum_maps.hpp index 5ed9487..1a1db63 100644 --- a/include/enum_maps.hpp +++ b/include/enum_maps.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_ENUM_MAPS_HPP diff --git a/include/enums.hpp b/include/enums.hpp index 96f44c6..dce49a2 100644 --- a/include/enums.hpp +++ b/include/enums.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_ENUMS_HPP diff --git a/include/exceptions.hpp b/include/exceptions.hpp index 1170615..b59bf62 100644 --- a/include/exceptions.hpp +++ b/include/exceptions.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_EXCEPTIONS_HPP diff --git a/include/expression.hpp b/include/expression.hpp index 0f6d00d..bd14a0f 100644 --- a/include/expression.hpp +++ b/include/expression.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_EXPRESSION_HPP diff --git a/include/formatted_data.hpp b/include/formatted_data.hpp index 70ce826..dd0f33e 100644 --- a/include/formatted_data.hpp +++ b/include/formatted_data.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FORMATTED_DATA_HPP diff --git a/include/fourier_analysis.hpp b/include/fourier_analysis.hpp index ae6d446..5a64150 100644 --- a/include/fourier_analysis.hpp +++ b/include/fourier_analysis.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_ANALYSIS_HPP diff --git a/include/fourier_analysis_comp_mask.hpp b/include/fourier_analysis_comp_mask.hpp index cfa8129..ffbca17 100644 --- a/include/fourier_analysis_comp_mask.hpp +++ b/include/fourier_analysis_comp_mask.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_ANALYSIS_COMP_MASK_HPP diff --git a/include/fourier_analysis_component.hpp b/include/fourier_analysis_component.hpp index 28ee181..ed24dcf 100644 --- a/include/fourier_analysis_component.hpp +++ b/include/fourier_analysis_component.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_ANALYSIS_COMPONENT_HPP diff --git a/include/fourier_analysis_results.hpp b/include/fourier_analysis_results.hpp index 4146fb9..1c09df2 100644 --- a/include/fourier_analysis_results.hpp +++ b/include/fourier_analysis_results.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_ANALYSIS_RESULTS_HPP diff --git a/include/fourier_transforms.hpp b/include/fourier_transforms.hpp index 7dbbc18..f64523a 100644 --- a/include/fourier_transforms.hpp +++ b/include/fourier_transforms.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_TRANSFORMS_HPP diff --git a/include/fourier_utilities.hpp b/include/fourier_utilities.hpp index f62c3a6..77b3f19 100644 --- a/include/fourier_utilities.hpp +++ b/include/fourier_utilities.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_FOURIER_UTILITIES_HPP diff --git a/include/manager.hpp b/include/manager.hpp index dbbc58c..4734ee1 100644 --- a/include/manager.hpp +++ b/include/manager.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_MANAGER_HPP diff --git a/include/object.hpp b/include/object.hpp index 5d2be5a..c09709a 100644 --- a/include/object.hpp +++ b/include/object.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_OBJECT_HPP diff --git a/include/processes.hpp b/include/processes.hpp index 4561cfe..8e19a9e 100644 --- a/include/processes.hpp +++ b/include/processes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_PROCESSES_HPP diff --git a/include/reductions.hpp b/include/reductions.hpp index 7bb6ad8..4208d8d 100644 --- a/include/reductions.hpp +++ b/include/reductions.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_REDUCTIONS_HPP diff --git a/include/type_aliases.hpp b/include/type_aliases.hpp index 605e8f2..844f131 100644 --- a/include/type_aliases.hpp +++ b/include/type_aliases.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_TYPE_ALIASES_HPP diff --git a/include/utils.hpp b/include/utils.hpp index 6541bb5..d877160 100644 --- a/include/utils.hpp +++ b/include/utils.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_UTILS_HPP diff --git a/include/version.h b/include/version.h index b0360ad..8934cfc 100644 --- a/include/version.h +++ b/include/version.h @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #define GENALYZER_VERSION_MAJOR 1 diff --git a/include/version.hpp b/include/version.hpp index 617580b..4835074 100644 --- a/include/version.hpp +++ b/include/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_VERSION_HPP diff --git a/include/waveforms.hpp b/include/waveforms.hpp index 006fbe2..7081d98 100644 --- a/include/waveforms.hpp +++ b/include/waveforms.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #ifndef GENALYZER_IMPL_WAVEFORMS_HPP diff --git a/src/array_ops.cpp b/src/array_ops.cpp index 346bd3c..8a86931 100644 --- a/src/array_ops.cpp +++ b/src/array_ops.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "array_ops.hpp" diff --git a/src/code_density.cpp b/src/code_density.cpp index ad07cae..4f5bd55 100644 --- a/src/code_density.cpp +++ b/src/code_density.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "code_density.hpp" diff --git a/src/enum_map.cpp b/src/enum_map.cpp index c68cd18..e0ad40e 100644 --- a/src/enum_map.cpp +++ b/src/enum_map.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "enum_map.hpp" diff --git a/src/enum_maps.cpp b/src/enum_maps.cpp index a2fb193..a849cc5 100644 --- a/src/enum_maps.cpp +++ b/src/enum_maps.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "enum_maps.hpp" diff --git a/src/expression.cpp b/src/expression.cpp index 6d0effe..7decf44 100644 --- a/src/expression.cpp +++ b/src/expression.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "expression.hpp" diff --git a/src/formatted_data.cpp b/src/formatted_data.cpp index 7ff0bc0..f305a9e 100644 --- a/src/formatted_data.cpp +++ b/src/formatted_data.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "formatted_data.hpp" diff --git a/src/fourier_analysis.cpp b/src/fourier_analysis.cpp index be7451c..e354162 100644 --- a/src/fourier_analysis.cpp +++ b/src/fourier_analysis.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "fourier_analysis.hpp" diff --git a/src/fourier_analysis_comp_mask.cpp b/src/fourier_analysis_comp_mask.cpp index a66babc..9ad2c5d 100644 --- a/src/fourier_analysis_comp_mask.cpp +++ b/src/fourier_analysis_comp_mask.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "fourier_analysis_comp_mask.hpp" diff --git a/src/fourier_transforms.cpp b/src/fourier_transforms.cpp index 5071f30..c7abc79 100644 --- a/src/fourier_transforms.cpp +++ b/src/fourier_transforms.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "fourier_transforms.hpp" diff --git a/src/fourier_utilities.cpp b/src/fourier_utilities.cpp index b62ea41..f37af7e 100644 --- a/src/fourier_utilities.cpp +++ b/src/fourier_utilities.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "fourier_utilities.hpp" diff --git a/src/json.cpp b/src/json.cpp index 1eb4ae4..f837842 100644 --- a/src/json.cpp +++ b/src/json.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "fourier_analysis.hpp" diff --git a/src/manager.cpp b/src/manager.cpp index 4a4e3d1..c222ce3 100644 --- a/src/manager.cpp +++ b/src/manager.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "manager.hpp" diff --git a/src/platform.cpp b/src/platform.cpp index 413d3c3..c2c1e80 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "type_aliases.hpp" diff --git a/src/processes.cpp b/src/processes.cpp index 5d3dd3c..f0bdd66 100644 --- a/src/processes.cpp +++ b/src/processes.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "processes.hpp" diff --git a/src/utils.cpp b/src/utils.cpp index d19f0be..e7278b2 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "utils.hpp" diff --git a/src/version.cpp b/src/version.cpp index ca5155e..95769f3 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "version.hpp" diff --git a/src/waveforms.cpp b/src/waveforms.cpp index a9a881f..39ae7e1 100644 --- a/src/waveforms.cpp +++ b/src/waveforms.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2024 Analog Devices, Inc. +// Copyright (C) 2024-2025 Analog Devices, Inc. // // SPDX short identifier: ADIBSD OR GPL-2.0-or-later #include "waveforms.hpp"