Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/pypa/gh-action-pyp…
Browse files Browse the repository at this point in the history
…i-publish-1.9.0
  • Loading branch information
rmshaffer authored Jun 18, 2024
2 parents d627bda + beb59a6 commit 4e9596a
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
check-code-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
Expand All @@ -44,7 +44,7 @@ jobs:
jupyter nbconvert --to html --execute --ExecutePreprocessor.kernel_name=python3 ./examples/3_1_Iterative_phase_estimation.ipynb
jupyter nbconvert --to html --execute --ExecutePreprocessor.kernel_name=python3 ./examples/3_2_magic_state_distillation.ipynb
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
if: ${{ strategy.job-index }} == 0
2 changes: 1 addition & 1 deletion .github/workflows/twine-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Check long description
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## v0.1.1 (2024-06-17)

### What's Changed
* change: get dimensions for aq.ArrayVar automatically by @Yash-10 in https://github.com/amazon-braket/autoqasm/pull/22
* fix: fix issue with kwargs while calling subroutine by @atharva-satpute in https://github.com/amazon-braket/autoqasm/pull/23
* fix: multi-dimensional ArrayVar declaration by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/25
* documentation: add .build() call on examples of displaying MainProgra… by @potatoboiler in https://github.com/amazon-braket/autoqasm/pull/24
* feat: Add @aq.hybrid_job decorator by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/21
* feature: support integer division by @abidart in https://github.com/amazon-braket/autoqasm/pull/29
* fix: mangle OpenQASM keywords by @atharva-satpute in https://github.com/amazon-braket/autoqasm/pull/28
* feature: add support for typecasting by @abidart in https://github.com/amazon-braket/autoqasm/pull/27
* fix: Pin amazon-braket-sdk version to 1.81.0 by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/35

### New Contributors
* @Yash-10 made their first contribution in https://github.com/amazon-braket/autoqasm/pull/22
* @atharva-satpute made their first contribution in https://github.com/amazon-braket/autoqasm/pull/23
* @potatoboiler made their first contribution in https://github.com/amazon-braket/autoqasm/pull/24
* @abidart made their first contribution in https://github.com/amazon-braket/autoqasm/pull/29

**Full Changelog**: https://github.com/amazon-braket/autoqasm/compare/v0.1.0...v0.1.1

## v0.1.0 (2024-05-22)

This is the initial pre-release version of AutoQASM.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name="autoqasm",
version="0.1.0",
version="0.1.1",
license="Apache License 2.0",
python_requires=">= 3.9",
packages=find_namespace_packages(where="src", exclude=("test",)),
Expand Down

0 comments on commit 4e9596a

Please sign in to comment.