Skip to content

Commit

Permalink
Create release v0.3.102.
Browse files Browse the repository at this point in the history
  • Loading branch information
abi-git-user committed Sep 13, 2022
1 parent ce638cc commit dbfc97b
Show file tree
Hide file tree
Showing 146 changed files with 282 additions and 236 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/deploy-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
13 changes: 13 additions & 0 deletions docs/changelogs/changelog_v0.3.101.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
libCellML v0.3.101 Changelog
============================

Infrastructure
--------------

* Fixing the manylinux tag name by `@hsorby <https://github.com/hsorby>`_ [`#1029 <https://github.com/cellml/libcellml/pull/1029>`_].

Contributors
------------

.. image:: https://avatars.githubusercontent.com/u/778048?v=4
:target: https://github.com/hsorby
:height: 32
:width: 32
20 changes: 20 additions & 0 deletions docs/changelogs/changelog_v0.3.102.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
libCellML v0.3.102 Changelog
============================

Documentation
-------------

* Update changelog_v0.3.101.rst by `@hsorby <https://github.com/hsorby>`_ [`#1032 <https://github.com/cellml/libcellml/pull/1032>`_].

Infrastructure
--------------

* Adding support for Python 3.8 macOS wheels by `@hsorby <https://github.com/hsorby>`_ [`#1034 <https://github.com/cellml/libcellml/pull/1034>`_].

Contributors
------------

.. image:: https://avatars.githubusercontent.com/u/778048?v=4
:target: https://github.com/hsorby
:height: 32
:width: 32
1 change: 1 addition & 0 deletions docs/changelogs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelogs

.. toctree::

changelog_v0.3.102
changelog_v0.3.101
changelog_v0.3.100
changelog_v0.3.99
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/bindings/javascript/version.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
})
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* 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"

#include <math.h>
#include <stdlib.h>

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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading

0 comments on commit dbfc97b

Please sign in to comment.