Skip to content

Commit

Permalink
Create release v0.6.0-rc.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
abi-git-user committed Oct 24, 2024
1 parent 4e3fd68 commit f9da98f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
ref: v2.9.10

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.3.1
uses: microsoft/setup-msbuild@v2
if: runner.os == 'Windows'

- name: Prepare Windows environment
Expand Down Expand Up @@ -269,11 +269,12 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ./build/dist/*
name: ${{ matrix.config.os }}

wheels:
needs: setup-jobs
if: needs.setup-jobs.outputs.allowed-jobs == 'Wheels' || needs.setup-jobs.outputs.allowed-jobs == 'All'
name: ${{ matrix.name }} ${{ matrix.py }} wheels
name: ${{ matrix.name }} ${{ matrix.py }} wheel
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -359,6 +360,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: ${{ matrix.name }}-${{ matrix.py }}-wheel

- name: Publish Python wheels
if: needs.setup-jobs.outputs.binaries-destination == 'Publish'
Expand Down Expand Up @@ -440,6 +442,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
path: ${{ steps.package-javascript.outputs.files }}
name: libcellml.js

- name: Publish libcellml.js
if: needs.setup-jobs.outputs.binaries-destination == 'Publish'
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15 CACHE STRING "Minimum OS X deployment vers
set(PROJECT_NAME libCellML)
set(PROJECT_URL https://libcellml.org)
set(_PROJECT_VERSION 0.6.0)
set(PROJECT_DEVELOPER_VERSION -rc.2)
set(PROJECT_DEVELOPER_VERSION -rc.3)
project(${PROJECT_NAME} VERSION ${_PROJECT_VERSION} LANGUAGES CXX)

# Set policies that affect the build.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libCellML v0.6.0-rc.2 Changelog
libCellML v0.6.0-rc.3 Changelog
===============================

Analyser
Expand Down Expand Up @@ -39,6 +39,7 @@ Infrastructure
No category
-----------

* CI build fixes by `@hsorby <https://github.com/hsorby>`_ [`#1268 <https://github.com/cellml/libcellml/pull/1268>`_].
* Generator: `computeComputedConstants()` may not generate some dependencies in the right place by `@agarny <https://github.com/agarny>`_ [`#1217 <https://github.com/cellml/libcellml/pull/1217>`_].
* Generator: use `size_t` rather than `int` in `nlaSolve()` by `@agarny <https://github.com/agarny>`_ [`#1202 <https://github.com/cellml/libcellml/pull/1202>`_].

Expand Down
2 changes: 1 addition & 1 deletion docs/changelogs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelogs

.. toctree::

changelog_v0.6.0-rc.2
changelog_v0.6.0-rc.3
changelog_v0.5.0
changelog_v0.4.0
changelog_v0.3.104
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Changelogs

.. toctree::

changelogs/changelog_v0.6.0-rc.2
changelogs/changelog_v0.6.0-rc.3
changelogs/changelog_v0.5.0
changelogs/changelog_v0.4.0
changelogs/changelog_v0.3.104
Expand Down

0 comments on commit f9da98f

Please sign in to comment.