Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/reusable-python-packaging-sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,3 @@ jobs:
with:
name: ${{ github.event_name == 'pull_request' && 'dev-' || '' }}cibw-sdist
path: dist/*.tar.gz
archive: false
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,3 @@ jobs:
with:
name: ${{ github.event_name == 'pull_request' && 'dev-' || '' }}cibw-wheel
path: dist/*.whl
archive: false
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning], with the exception that minor rel

## [Unreleased]

## [1.18.1] - 2026-04-09

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#1181)._

### Changed

- 📦️ Archive packaging-related artifacts again ([#356]) ([**@denialhaag**])

## [1.18.0] - 2026-04-08

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#1180)._
Expand All @@ -27,6 +35,8 @@ _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#1180)._

## [1.17.15] - 2026-03-11

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#11715)._

### Changed

- ⬆️ Update [munich-quantum-software/setup-mlir] to `v1.3.0`, which improves support for LLVM 22 by re-adding Windows Debug builds ([#335]) ([**@burgholzer**])
Expand Down Expand Up @@ -293,7 +303,8 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._

<!-- Version links -->

[unreleased]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.18.0...HEAD
[unreleased]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.18.1...HEAD
[1.18.1]: https://github.com/munich-quantum-toolkit/workflows/releases/tag/v1.18.1
[1.18.0]: https://github.com/munich-quantum-toolkit/workflows/releases/tag/v1.18.0
[1.17.15]: https://github.com/munich-quantum-toolkit/workflows/releases/tag/v1.17.15
[1.17.14]: https://github.com/munich-quantum-toolkit/workflows/releases/tag/v1.17.14
Expand Down Expand Up @@ -326,6 +337,7 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._

<!-- PR links -->

[#356]: https://github.com/munich-quantum-toolkit/workflows/pull/356
[#344]: https://github.com/munich-quantum-toolkit/workflows/pull/344
[#343]: https://github.com/munich-quantum-toolkit/workflows/pull/343
[#339]: https://github.com/munich-quantum-toolkit/workflows/pull/339
Expand Down
20 changes: 18 additions & 2 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ This document describes breaking changes and how to upgrade. For a complete list

## [Unreleased]

## [1.18.1]

To reduce complications when uploading artifacts during deployment to PyPI, we are reverting changes made in [1.17.15].
The `pattern` passed to [actions/upload-artifact] can be `cibw-` again.

## [1.18.0]

### Rely on MQT App secrets from `mqt-app` GitHub environment
Expand All @@ -12,6 +17,13 @@ In accordance with the latest guidelines from the [zizmor] linter, the `reusable
This means that the `APP_ID` and `APP_PRIVATE_KEY` secrets are no longer read from organization-wide secrets.
Instead, they must now be configured in a dedicated `mqt-app` GitHub environment, which needs to be created in each repository that uses the `reusable-mqt-core-update.yml` workflow.

## [1.17.15]

Thanks to a change in [actions/upload-artifact], it is now possible to not archive artifacts before uploading them.
We make use of this in `reusable-python-packaging-sdist.yml` and `reusable-python-packaging-wheel-build.yml`.
As a result, the `pattern` passed to [actions/upload-artifact] has to be adjusted.
For example, `cibw-` needs to be replaced with `mqt_bench-`.

## [1.17.11]

### Removal of `run-mlir` output from change-detection
Expand Down Expand Up @@ -282,8 +294,10 @@ Consider removing any `-G Ninja` flags from your CMake invocations under Windows

<!-- Version links -->

[unreleased]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.18.0...HEAD
[1.18.0]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.11...v1.18.0
[unreleased]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.18.1...HEAD
[1.18.1]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.18.0...v1.18.1
[1.18.0]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.15...v1.18.0
[1.17.15]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.11...v1.17.15
[1.17.11]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.6...v1.17.11
[1.17.6]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.5...v1.17.6
[1.17.5]: https://github.com/munich-quantum-toolkit/workflows/compare/v1.17.3...v1.17.5
Expand All @@ -300,6 +314,8 @@ Consider removing any `-G Ninja` flags from your CMake invocations under Windows

<!-- General links -->

[actions/download-artifact]: https://github.com/actions/download-artifact
[actions/upload-artifact]: https://github.com/actions/upload-artifact
[portable-mlir-toolchain]: https://github.com/munich-quantum-software/portable-mlir-toolchain
[setup-mlir]: https://github.com/munich-quantum-software/setup-mlir
[zizmor]: https://docs.zizmor.sh/
Loading