diff --git a/.github/workflows/deploy-on-release.yml b/.github/workflows/deploy-on-release.yml index fcaf0d002..ed742709b 100644 --- a/.github/workflows/deploy-on-release.yml +++ b/.github/workflows/deploy-on-release.yml @@ -293,8 +293,7 @@ jobs: exclude: - os: macos-12 py: '3.7' - - os: macos-12 - py: '3.8' + steps: - name: Check out libCellML uses: actions/checkout@v2 @@ -314,6 +313,18 @@ jobs: #echo ::set-output name=TAG::v0.2.0-dev.21 echo "Setting build as: BUILD=cp${v/./}-*" echo ::set-output name=BUILD::cp${v/./}-* + if [[ "macOS" == "${{ matrix.name }}" ]]; then + if [[ "${{ matrix.py }}" == "3.8" ]]; then + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64'" + echo ::set-output name=MACOS_ARCHS::x86_64 + else + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64 arm64'" + echo ::set-output name=MACOS_ARCHS::"x86_64 arm64" + fi + else + echo "Setting MACOS_ARCHS as: MACOS_ARCHS='x86_64'" + echo ::set-output name=MACOS_ARCHS::x86_64 + fi - name: Configure MSVC if: runner.os == 'Windows' @@ -332,14 +343,14 @@ jobs: env: #CIBW_BUILD_VERBOSITY: 1 CIBW_ARCHS: auto64 - CIBW_ARCHS_MACOS: "x86_64 arm64" + CIBW_ARCHS_MACOS: ${{ steps.setup.outputs.macos_archs }} CIBW_BUILD: ${{ steps.setup.outputs.build }} CIBW_TEST_SKIP: "*_arm64" CIBW_BEFORE_ALL_LINUX: yum install -y libxml2-devel || (apk add libxml2-dev && rm /usr/lib/cmake/libxml2/libxml2-config.cmake) CIBW_BEFORE_ALL_WINDOWS: cd src/bindings/python && cmake -S wheel_dependencies -B build-wheel_dependencies -G Ninja && cd build-wheel_dependencies && ninja CIBW_ENVIRONMENT: LIBCELLML_VERSION_TAG=${{ steps.setup.outputs.tag }} CIBW_ENVIRONMENT_MACOS: > - MACOSX_DEPLOYMENT_TARGET=11.0 + MACOSX_DEPLOYMENT_TARGET=10.15 LIBCELLML_VERSION_TAG=${{ steps.setup.outputs.tag }} CIBW_REPAIR_WHEEL_COMMAND_MACOS: "" CIBW_BEFORE_BUILD_LINUX: pip install renamewheel diff --git a/CMakeLists.txt b/CMakeLists.txt index bf62cde99..735c5a3d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.10.2) set(PROJECT_NAME libCellML) set(PROJECT_URL https://libcellml.org) -set(_PROJECT_VERSION 0.3.101) +set(_PROJECT_VERSION 0.3.102) set(PROJECT_DEVELOPER_VERSION ) project(${PROJECT_NAME} VERSION ${_PROJECT_VERSION} LANGUAGES CXX) diff --git a/docs/changelogs/changelog_v0.3.101.rst b/docs/changelogs/changelog_v0.3.101.rst index 4514b3677..c58192d99 100644 --- a/docs/changelogs/changelog_v0.3.101.rst +++ b/docs/changelogs/changelog_v0.3.101.rst @@ -1,2 +1,15 @@ libCellML v0.3.101 Changelog ============================ + +Infrastructure +-------------- + +* Fixing the manylinux tag name by `@hsorby `_ [`#1029 `_]. + +Contributors +------------ + +.. image:: https://avatars.githubusercontent.com/u/778048?v=4 + :target: https://github.com/hsorby + :height: 32 + :width: 32 diff --git a/docs/changelogs/changelog_v0.3.102.rst b/docs/changelogs/changelog_v0.3.102.rst new file mode 100644 index 000000000..8e6dc9c49 --- /dev/null +++ b/docs/changelogs/changelog_v0.3.102.rst @@ -0,0 +1,20 @@ +libCellML v0.3.102 Changelog +============================ + +Documentation +------------- + +* Update changelog_v0.3.101.rst by `@hsorby `_ [`#1032 `_]. + +Infrastructure +-------------- + +* Adding support for Python 3.8 macOS wheels by `@hsorby `_ [`#1034 `_]. + +Contributors +------------ + +.. image:: https://avatars.githubusercontent.com/u/778048?v=4 + :target: https://github.com/hsorby + :height: 32 + :width: 32 diff --git a/docs/changelogs/index.rst b/docs/changelogs/index.rst index e644d50e8..efcdd08c3 100644 --- a/docs/changelogs/index.rst +++ b/docs/changelogs/index.rst @@ -4,6 +4,7 @@ Changelogs .. toctree:: + changelog_v0.3.102 changelog_v0.3.101 changelog_v0.3.100 changelog_v0.3.99 diff --git a/docs/index.rst b/docs/index.rst index 1c40d442d..1e1dfdba0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -37,6 +37,7 @@ Changelogs .. toctree:: + changelogs/changelog_v0.3.102 changelogs/changelog_v0.3.101 changelogs/changelog_v0.3.100 changelogs/changelog_v0.3.99 diff --git a/tests/bindings/javascript/version.test.js b/tests/bindings/javascript/version.test.js index 1028b35a2..39685dca1 100644 --- a/tests/bindings/javascript/version.test.js +++ b/tests/bindings/javascript/version.test.js @@ -22,6 +22,6 @@ describe("Version tests", () => { libcellml = await libCellMLModule(); }); test('Checking version string.', () => { - expect(libcellml.versionString()).toBe('0.3.101'); + expect(libcellml.versionString()).toBe('0.3.102'); }); }) diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c index d5bba6558..3ead45155 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c index 297150c7d..85d53b640 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h index 65a2b8407..cbe3afec0 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py index dc4486c95..d0b4fb7b7 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h index a8b285ea3..8e717b021 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py index 8272f89a2..7f1b529c8 100644 --- a/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_computed_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c index e38dc28a3..9f1d8a5ec 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h index a8b285ea3..8e717b021 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py index 0ea02a681..da2f78fa0 100644 --- a/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_const_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c index 00d2fe6ec..40c598b99 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h index 1b3f61f29..31910fdb3 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py index 554f09904..c8f3eb392 100644 --- a/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_constant_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c index 5ba0d5e00..a291fb50d 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h index 131db5935..b66d77328 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py index fd7724837..63384a067 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c index 4becd826f..b48a449d0 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h index 6e4dda05b..2eee2705a 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py index 8cf66bbba..c4f515dae 100644 --- a/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py +++ b/tests/resources/generator/algebraic_eqn_derivative_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c index 2f297fedf..33bf4ed63 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h index 4f2aa3009..81fa4a6fb 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py index e3de76ba1..c1edb5b9d 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c index ef39983ee..cb620f126 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h index 5152409b6..5f905dfb7 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py index 350d7d3fe..71617ecc6 100644 --- a/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/algebraic_eqn_state_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cell_geometry_model/model.c b/tests/resources/generator/cell_geometry_model/model.c index ca70b657a..382b54f0b 100644 --- a/tests/resources/generator/cell_geometry_model/model.c +++ b/tests/resources/generator/cell_geometry_model/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 4; diff --git a/tests/resources/generator/cell_geometry_model/model.external.c b/tests/resources/generator/cell_geometry_model/model.external.c index 948b33e9c..a6061f460 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.c +++ b/tests/resources/generator/cell_geometry_model/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 4; diff --git a/tests/resources/generator/cell_geometry_model/model.external.h b/tests/resources/generator/cell_geometry_model/model.external.h index 89fd696fe..95dc072af 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.h +++ b/tests/resources/generator/cell_geometry_model/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cell_geometry_model/model.external.py b/tests/resources/generator/cell_geometry_model/model.external.py index 0145bbd51..05d96e74c 100644 --- a/tests/resources/generator/cell_geometry_model/model.external.py +++ b/tests/resources/generator/cell_geometry_model/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 4 diff --git a/tests/resources/generator/cell_geometry_model/model.h b/tests/resources/generator/cell_geometry_model/model.h index d7d406194..580390920 100644 --- a/tests/resources/generator/cell_geometry_model/model.h +++ b/tests/resources/generator/cell_geometry_model/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cell_geometry_model/model.py b/tests/resources/generator/cell_geometry_model/model.py index 6549b25b2..e37804aed 100644 --- a/tests/resources/generator/cell_geometry_model/model.py +++ b/tests/resources/generator/cell_geometry_model/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 4 diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.c b/tests/resources/generator/cellml_mappings_and_encapsulations/model.c index 2cbd8314e..bd630ee22 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.c +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.h b/tests/resources/generator/cellml_mappings_and_encapsulations/model.h index 3dc8cb0a7..7203f081f 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.h +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_mappings_and_encapsulations/model.py b/tests/resources/generator/cellml_mappings_and_encapsulations/model.py index 9ef044150..2005d878e 100644 --- a/tests/resources/generator/cellml_mappings_and_encapsulations/model.py +++ b/tests/resources/generator/cellml_mappings_and_encapsulations/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.c b/tests/resources/generator/cellml_state_initialised_using_variable/model.c index 68bbb8bd4..b40031662 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.c +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.h b/tests/resources/generator/cellml_state_initialised_using_variable/model.h index f9a5aa266..b5e4934c3 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.h +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_state_initialised_using_variable/model.py b/tests/resources/generator/cellml_state_initialised_using_variable/model.py index 11b578bf5..640fb856f 100644 --- a/tests/resources/generator/cellml_state_initialised_using_variable/model.py +++ b/tests/resources/generator/cellml_state_initialised_using_variable/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.c b/tests/resources/generator/cellml_unit_scaling_constant/model.c index 54b3b3e97..9dd1d14b1 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.c +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t VARIABLE_COUNT = 3; diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.h b/tests/resources/generator/cellml_unit_scaling_constant/model.h index bf6aeae0e..4d82c06fb 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.h +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_constant/model.py b/tests/resources/generator/cellml_unit_scaling_constant/model.py index 0ef007e0f..39bcce2e9 100644 --- a/tests/resources/generator/cellml_unit_scaling_constant/model.py +++ b/tests/resources/generator/cellml_unit_scaling_constant/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" VARIABLE_COUNT = 3 diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.c b/tests/resources/generator/cellml_unit_scaling_rate/model.c index a7bd28ddd..eda0422bd 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.c +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.h b/tests/resources/generator/cellml_unit_scaling_rate/model.h index f9a5aa266..b5e4934c3 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.h +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_rate/model.py b/tests/resources/generator/cellml_unit_scaling_rate/model.py index c3aa80552..8977e562b 100644 --- a/tests/resources/generator/cellml_unit_scaling_rate/model.py +++ b/tests/resources/generator/cellml_unit_scaling_rate/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.c b/tests/resources/generator/cellml_unit_scaling_state/model.c index b603120c1..6f4a4e36b 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.h b/tests/resources/generator/cellml_unit_scaling_state/model.h index f9a5aa266..b5e4934c3 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state/model.py b/tests/resources/generator/cellml_unit_scaling_state/model.py index adce1854e..676b0796b 100644 --- a/tests/resources/generator/cellml_unit_scaling_state/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c index 5a3ac3cdc..c03f388e1 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h index 42298b8db..f52e14f06 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py index ac9c300ef..fc76b05fe 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_constant/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c index e894acc1a..4106a3f33 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h index 6469d1db3..6361014f2 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py index 21df91e6e..567d24a86 100644 --- a/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py +++ b/tests/resources/generator/cellml_unit_scaling_state_initialised_using_variable/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c index 46450873b..a00e55cc7 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h index 3c72fd035..1e6ad749c 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py index d909c0668..67d9a68c7 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py +++ b/tests/resources/generator/cellml_unit_scaling_voi_direct/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c index 13ed039e6..68db25fa1 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h index f9a5aa266..b5e4934c3 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py index f29af722f..106ddb6e0 100644 --- a/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py +++ b/tests/resources/generator/cellml_unit_scaling_voi_indirect/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/coverage/model.c b/tests/resources/generator/coverage/model.c index 45ce4bc74..1e331905d 100644 --- a/tests/resources/generator/coverage/model.c +++ b/tests/resources/generator/coverage/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 186; diff --git a/tests/resources/generator/coverage/model.h b/tests/resources/generator/coverage/model.h index 630d3b7ff..551e3c5f6 100644 --- a/tests/resources/generator/coverage/model.h +++ b/tests/resources/generator/coverage/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.implementation.out b/tests/resources/generator/coverage/model.implementation.out index 5fcbf8b18..f545fcfe1 100644 --- a/tests/resources/generator/coverage/model.implementation.out +++ b/tests/resources/generator/coverage/model.implementation.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ double xor(double x, double y) { diff --git a/tests/resources/generator/coverage/model.interface.out b/tests/resources/generator/coverage/model.interface.out index f720ed428..36a03350b 100644 --- a/tests/resources/generator/coverage/model.interface.out +++ b/tests/resources/generator/coverage/model.interface.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.c b/tests/resources/generator/coverage/model.modified.profile.c index 58b3fee20..6b291408b 100644 --- a/tests/resources/generator/coverage/model.modified.profile.c +++ b/tests/resources/generator/coverage/model.modified.profile.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0.post0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 186; diff --git a/tests/resources/generator/coverage/model.modified.profile.h b/tests/resources/generator/coverage/model.modified.profile.h index 6670cbae4..3075e6d3a 100644 --- a/tests/resources/generator/coverage/model.modified.profile.h +++ b/tests/resources/generator/coverage/model.modified.profile.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/coverage/model.modified.profile.py b/tests/resources/generator/coverage/model.modified.profile.py index a90bbde2c..a87ce1ffb 100644 --- a/tests/resources/generator/coverage/model.modified.profile.py +++ b/tests/resources/generator/coverage/model.modified.profile.py @@ -1,11 +1,11 @@ -# The content of this file was generated using a modified Python profile of libCellML 0.3.101. +# The content of this file was generated using a modified Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0.post0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 186 diff --git a/tests/resources/generator/coverage/model.out b/tests/resources/generator/coverage/model.out index bddf8ef55..c19807828 100644 --- a/tests/resources/generator/coverage/model.out +++ b/tests/resources/generator/coverage/model.out @@ -1,4 +1,4 @@ -/* The content of this file was generated using a modified C profile of libCellML 0.3.101. */ +/* The content of this file was generated using a modified C profile of libCellML 0.3.102. */ #include "customheaderfile.h" diff --git a/tests/resources/generator/coverage/model.py b/tests/resources/generator/coverage/model.py index 8f25af637..96c4c6fe5 100644 --- a/tests/resources/generator/coverage/model.py +++ b/tests/resources/generator/coverage/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 186 diff --git a/tests/resources/generator/dependent_eqns/model.c b/tests/resources/generator/dependent_eqns/model.c index 888e85406..62e17a8da 100644 --- a/tests/resources/generator/dependent_eqns/model.c +++ b/tests/resources/generator/dependent_eqns/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 2; diff --git a/tests/resources/generator/dependent_eqns/model.h b/tests/resources/generator/dependent_eqns/model.h index 5f1020567..ef29e0943 100644 --- a/tests/resources/generator/dependent_eqns/model.h +++ b/tests/resources/generator/dependent_eqns/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/dependent_eqns/model.py b/tests/resources/generator/dependent_eqns/model.py index 06a1f88e4..469bffc71 100644 --- a/tests/resources/generator/dependent_eqns/model.py +++ b/tests/resources/generator/dependent_eqns/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 2 diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c index 1941a34c0..cba07ad06 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 33; const size_t VARIABLE_COUNT = 217; diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h index 39dc40269..b235cd514 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py index 17aee6077..69cb40453 100644 --- a/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py +++ b/tests/resources/generator/fabbri_fantini_wilders_severi_human_san_model_2017/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 33 VARIABLE_COUNT = 217 diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c index 78d37a909..60a263122 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 15; const size_t VARIABLE_COUNT = 185; diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h index 7ecb7a9a2..a3776bac6 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py index 43e859ac3..df48cda00 100644 --- a/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py +++ b/tests/resources/generator/garny_kohl_hunter_boyett_noble_rabbit_san_model_2003/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 15 VARIABLE_COUNT = 185 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c index dbabe3e2c..ef0ff4787 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py index e8dbc4d01..5be4825f5 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.algebraic.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c index 7504642b6..8ae39768b 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c index d20f30b0b..6b98e6b95 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py index c961c53b4..e4c0e5312 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.computed.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c index fc2f58a92..2a3589c6c 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py index bead93a13..da66ec502 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c index 11c41c852..35b5a7ea5 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.algebraic.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py index 715332518..26fb43b58 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.algebraic.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c index 20cbcb30b..a851eb3ce 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.computed.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py index e3f43c4df..e969e3d3e 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.computed.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c index 12b38ab30..e45745899 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.constant.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 18; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py index 42991ea1d..ae140cb3c 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.constant.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c index 9f1ae4e0b..bb196ae30 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.dependent.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 20; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py index be2591008..311f271d9 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.dependent.state.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 20 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c index d75678f1e..56c688800 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.external.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 3; const size_t VARIABLE_COUNT = 19; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py index 6c6fd88b4..0d99e90af 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.external.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 3 VARIABLE_COUNT = 19 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h index 6b17ea148..a088d835c 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py index 9b985b961..2d2c5a317 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 18 diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c index b612dd194..4ea8fe6d2 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.state.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 3; const size_t VARIABLE_COUNT = 19; diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h index 2badbf814..919bedf88 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py index 7fd107ef1..6384e6d3b 100644 --- a/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py +++ b/tests/resources/generator/hodgkin_huxley_squid_axon_model_1952/model.state.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 3 VARIABLE_COUNT = 19 diff --git a/tests/resources/generator/noble_model_1962/model.c b/tests/resources/generator/noble_model_1962/model.c index 7919508c4..a32ff1c5b 100644 --- a/tests/resources/generator/noble_model_1962/model.c +++ b/tests/resources/generator/noble_model_1962/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 4; const size_t VARIABLE_COUNT = 17; diff --git a/tests/resources/generator/noble_model_1962/model.h b/tests/resources/generator/noble_model_1962/model.h index bb24f4a68..8bccadd79 100644 --- a/tests/resources/generator/noble_model_1962/model.h +++ b/tests/resources/generator/noble_model_1962/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/noble_model_1962/model.py b/tests/resources/generator/noble_model_1962/model.py index 7388ed1dc..8d166247c 100644 --- a/tests/resources/generator/noble_model_1962/model.py +++ b/tests/resources/generator/noble_model_1962/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 4 VARIABLE_COUNT = 17 diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.c b/tests/resources/generator/ode_computed_var_on_rhs/model.c index 8791da0dc..3a51dcd41 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.c +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.h b/tests/resources/generator/ode_computed_var_on_rhs/model.h index 3c72fd035..1e6ad749c 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.h +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_computed_var_on_rhs/model.py b/tests/resources/generator/ode_computed_var_on_rhs/model.py index e4048e0f8..a34f4e23f 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs/model.py +++ b/tests/resources/generator/ode_computed_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c index 31725b70c..0f4e21e33 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h index 6e4dda05b..2eee2705a 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py index 150c50725..1d5bde917 100644 --- a/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_computed_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.c b/tests/resources/generator/ode_const_var_on_rhs/model.c index 8919814b9..8a83a0aed 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.c +++ b/tests/resources/generator/ode_const_var_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.h b/tests/resources/generator/ode_const_var_on_rhs/model.h index 3c72fd035..1e6ad749c 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.h +++ b/tests/resources/generator/ode_const_var_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_const_var_on_rhs/model.py b/tests/resources/generator/ode_const_var_on_rhs/model.py index 3d1528b80..71c65e5ec 100644 --- a/tests/resources/generator/ode_const_var_on_rhs/model.py +++ b/tests/resources/generator/ode_const_var_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c index 76c5dfd78..9b716933b 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h index 6e4dda05b..2eee2705a 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py index a27cdcfda..6fb356c59 100644 --- a/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_const_var_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_constant_on_rhs/model.c b/tests/resources/generator/ode_constant_on_rhs/model.c index ed422ab7f..48ff296d5 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.c +++ b/tests/resources/generator/ode_constant_on_rhs/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/ode_constant_on_rhs/model.h b/tests/resources/generator/ode_constant_on_rhs/model.h index 3c72fd035..1e6ad749c 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.h +++ b/tests/resources/generator/ode_constant_on_rhs/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_constant_on_rhs/model.py b/tests/resources/generator/ode_constant_on_rhs/model.py index b80bc8c27..50471b72c 100644 --- a/tests/resources/generator/ode_constant_on_rhs/model.py +++ b/tests/resources/generator/ode_constant_on_rhs/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.c b/tests/resources/generator/ode_constant_on_rhs_one_component/model.c index 1ed3d8b32..591daaa83 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.c +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 0; diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.h b/tests/resources/generator/ode_constant_on_rhs_one_component/model.h index 6e4dda05b..2eee2705a 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.h +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_constant_on_rhs_one_component/model.py b/tests/resources/generator/ode_constant_on_rhs_one_component/model.py index 87d304ddc..8d1d82057 100644 --- a/tests/resources/generator/ode_constant_on_rhs_one_component/model.py +++ b/tests/resources/generator/ode_constant_on_rhs_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 0 diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.c b/tests/resources/generator/ode_multiple_dependent_odes/model.c index bbf795b4b..db49e4925 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.c +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.h b/tests/resources/generator/ode_multiple_dependent_odes/model.h index eae840cdf..a94e78905 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.h +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_dependent_odes/model.py b/tests/resources/generator/ode_multiple_dependent_odes/model.py index 6868dd720..2c98dfd1d 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes/model.py +++ b/tests/resources/generator/ode_multiple_dependent_odes/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c index d87b74d6d..4ea6cc07f 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h index 6e011cc0b..5b5686e33 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py index b93f1421f..2981a40c1 100644 --- a/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py +++ b/tests/resources/generator/ode_multiple_dependent_odes_one_component/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.c b/tests/resources/generator/ode_multiple_odes_with_same_name/model.c index 6f1263cc7..0642e7db6 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.c +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 2; const size_t VARIABLE_COUNT = 1; diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.h b/tests/resources/generator/ode_multiple_odes_with_same_name/model.h index 12267c247..dd2200756 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.h +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/ode_multiple_odes_with_same_name/model.py b/tests/resources/generator/ode_multiple_odes_with_same_name/model.py index 99348ef48..4eaf00009 100644 --- a/tests/resources/generator/ode_multiple_odes_with_same_name/model.py +++ b/tests/resources/generator/ode_multiple_odes_with_same_name/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 2 VARIABLE_COUNT = 1 diff --git a/tests/resources/generator/sine_model_imports/model.c b/tests/resources/generator/sine_model_imports/model.c index 890fc8853..4f881d578 100644 --- a/tests/resources/generator/sine_model_imports/model.c +++ b/tests/resources/generator/sine_model_imports/model.c @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #include "model.h" @@ -6,7 +6,7 @@ #include const char VERSION[] = "0.3.0"; -const char LIBCELLML_VERSION[] = "0.3.101"; +const char LIBCELLML_VERSION[] = "0.3.102"; const size_t STATE_COUNT = 1; const size_t VARIABLE_COUNT = 10; diff --git a/tests/resources/generator/sine_model_imports/model.h b/tests/resources/generator/sine_model_imports/model.h index d35b29bf0..bbf9d8edd 100644 --- a/tests/resources/generator/sine_model_imports/model.h +++ b/tests/resources/generator/sine_model_imports/model.h @@ -1,4 +1,4 @@ -/* The content of this file was generated using the C profile of libCellML 0.3.101. */ +/* The content of this file was generated using the C profile of libCellML 0.3.102. */ #pragma once diff --git a/tests/resources/generator/sine_model_imports/model.py b/tests/resources/generator/sine_model_imports/model.py index 891c17c5a..3044a7165 100644 --- a/tests/resources/generator/sine_model_imports/model.py +++ b/tests/resources/generator/sine_model_imports/model.py @@ -1,11 +1,11 @@ -# The content of this file was generated using the Python profile of libCellML 0.3.101. +# The content of this file was generated using the Python profile of libCellML 0.3.102. from enum import Enum from math import * __version__ = "0.3.0" -LIBCELLML_VERSION = "0.3.101" +LIBCELLML_VERSION = "0.3.102" STATE_COUNT = 1 VARIABLE_COUNT = 10 diff --git a/tests/version/version.cpp b/tests/version/version.cpp index 0d98cd30a..3644a0bbe 100644 --- a/tests/version/version.cpp +++ b/tests/version/version.cpp @@ -5,8 +5,8 @@ TEST(Version, versionMatch) { unsigned int version = libcellml::version(); - EXPECT_EQ(0x0003101U, version); + EXPECT_EQ(0x0003102U, version); std::string versionString = libcellml::versionString(); - EXPECT_EQ("0.3.101", versionString); + EXPECT_EQ("0.3.102", versionString); }