Skip to content

Commit

Permalink
Merge pull request #513 from QuTech-Delft/release-0.12.2
Browse files Browse the repository at this point in the history
Release 0.12.2
  • Loading branch information
rturrado authored Jan 9, 2024
2 parents eadc9bc + 68d1516 commit 67fe6ee
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ jobs:
- name: Install dependencies
run: |
brew install bison flex swig xquartz
echo "/usr/local/opt/bison/bin" >> "$GITHUB_PATH"
echo "/usr/local/opt/flex/bin" >> "$GITHUB_PATH"
echo "/usr/local/opt/bison/bin" >> $GITHUB_PATH
echo "/usr/local/opt/flex/bin" >> $GITHUB_PATH
python -m pip install --upgrade pip conan setuptools wheel
- name: Build wheel
run: python setup.py bdist_wheel
- name: Wheel path
id: wheel
working-directory: pybuild/dist/
run: |
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_OUTPUT"
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_ENV"
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_OUTPUT
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: pypi-macos-py${{ matrix.python }}
Expand Down Expand Up @@ -97,8 +97,8 @@ jobs:
id: wheel
working-directory: wheelhouse
run: |
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_OUTPUT"
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_ENV"
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_OUTPUT
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: pypi-linux-${{ matrix.cpython_version }}
Expand Down Expand Up @@ -162,8 +162,8 @@ jobs:
id: wheel
working-directory: wheelhouse
run: |
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_OUTPUT"
echo "WHEEL_NAME=$(ls *.whl)" >> "$GITHUB_ENV"
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_OUTPUT
echo "WHEEL_NAME=$(ls *.whl)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: pypi-linux-${{ matrix.cpython_version }}
Expand Down Expand Up @@ -204,8 +204,9 @@ jobs:
id: wheel
working-directory: pybuild/dist/
run: |
echo "WHEEL_NAME=$(Get-ChildItem -name *.whl)" >> "$GITHUB_OUTPUT"
echo "WHEEL_NAME=$(Get-ChildItem -name *.whl)" >> "$GITHUB_ENV"
echo "WHEEL_NAME=$(Get-ChildItem -name *.whl)" >> $env:GITHUB_OUTPUT
echo "WHEEL_NAME=$(Get-ChildItem -name *.whl)" >> $env:GITHUB_ENV
shell: powershell
- uses: actions/upload-artifact@v3
with:
name: pypi-windows-py${{ matrix.python }}
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [ 0.12.2 ] - [ 2024-01-09 ]

### Added

### Changed

- Fixed `upload-release-asset` steps in `.github/workflow/assets.yml` for `windows-x64` job.

### Removed


## [ 0.12.1 ] - [ 2024-01-08 ]

### Added
Expand All @@ -12,6 +23,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Fixed `upload-release-asset` steps in `.github/workflow/assets.yml`.
- Updated `RELEASE.md`.

### Removed


## [ 0.12.0 ] - [ 2023-12-18 ]
### Added
Expand Down
2 changes: 1 addition & 1 deletion include/ql/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
* OPENQL_VERSION_STRING is also decoded by version.py
*/

#define OPENQL_VERSION_STRING "0.12.1"
#define OPENQL_VERSION_STRING "0.12.2"

0 comments on commit 67fe6ee

Please sign in to comment.