From 05c2fef672f304bee5a912012bd804f19dcdb2c7 Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Mon, 14 Mar 2022 14:20:03 -0700 Subject: [PATCH] Release 0.3.0 (#82) * Updating changelog, release notes, and installing docs in preparation for 0.3.0 --- Changelog.md | 13 ++++++++++++- docs/getting-started/installing.md | 8 ++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1db82b9b..5c58f4ce 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [0.3.0a1] - 2022-03-14 + +- Adding issue template for bugs, feature requests, and GitHub releases by @bettinaheim in https://github.com/qir-alliance/pyqir/pull/66 +- Qirlib code consolidation by @idavis in https://github.com/qir-alliance/pyqir/pull/71 +- Update _parser.py docs by @LaurentAjdnik in https://github.com/qir-alliance/pyqir/pull/72 +- Rename `Ref` to `ResultRef` by @samarsha in https://github.com/qir-alliance/pyqir/pull/78 +- Wheel/Project Renames by @idavis in https://github.com/qir-alliance/pyqir/pull/79 +- Moving LLVM build downloads to GitHub PyQIR releases by @idavis in https://github.com/qir-alliance/pyqir/pull/83 +- Cleaning up docs before publishing by @idavis in https://github.com/qir-alliance/pyqir/pull/84 + ## [0.2.0a1] - 2022-02-25 - Cache parser values for better hashing in Python [#41](https://github.com/qir-alliance/pyqir/pull/41) @@ -40,6 +50,7 @@ - Initial Release -[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.2.0a1...HEAD +[Unreleased]: https://github.com/qir-alliance/pyqir/compare/v0.3.0a1...HEAD +[0.3.0a1]: https://github.com/qir-alliance/pyqir/compare/v0.2.0a1...v0.3.0a1 [0.2.0a1]: https://github.com/qir-alliance/pyqir/compare/v0.1.0a1...v0.2.0a1 [0.1.1a1]: https://github.com/qir-alliance/pyqir/compare/v0.1.0a1...v0.1.1a1 diff --git a/docs/getting-started/installing.md b/docs/getting-started/installing.md index 7ac49300..cb4f12e0 100644 --- a/docs/getting-started/installing.md +++ b/docs/getting-started/installing.md @@ -23,24 +23,24 @@ conda install -c conda-forge gh ### Download the Release From within the repository root folder, run the following command to download -the desired version for your platform, e.g. for `v0.2.0a1`: +the desired version for your platform, e.g. for `v0.3.0a1`: - on Linux: ```bash - gh release download v0.2.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-manylinux*_x86_64.whl" + gh release download v0.3.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-manylinux*_x86_64.whl" ``` - on Mac OS: ```bash - gh release download v0.2.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-macosx_*_x86_64.whl" + gh release download v0.3.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-macosx_*_x86_64.whl" ``` - on Windows: ```bash - gh release download v0.2.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-win_amd64.whl" + gh release download v0.3.0a1 -D wheelhouse -R qir-alliance/pyqir --pattern "*-win_amd64.whl" ``` ### Install the Packages