Skip to content

Commit

Permalink
Release 0.3.0 (#82)
Browse files Browse the repository at this point in the history
* Updating changelog, release notes, and installing docs in preparation for 0.3.0
  • Loading branch information
idavis authored Mar 14, 2022
1 parent f186c55 commit 05c2fef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
8 changes: 4 additions & 4 deletions docs/getting-started/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 05c2fef

Please sign in to comment.