diff --git a/.github/workflows/check-format.yml b/.github/workflows/check-format.yml index ee95240..0137a6b 100644 --- a/.github/workflows/check-format.yml +++ b/.github/workflows/check-format.yml @@ -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: diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 8370ce6..960882e 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -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: diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9be92b6..7f5520d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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: @@ -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 diff --git a/.github/workflows/twine-check.yml b/.github/workflows/twine-check.yml index db2f3b2..3b439db 100644 --- a/.github/workflows/twine-check.yml +++ b/.github/workflows/twine-check.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index c650698..8e8f758 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/setup.py b/setup.py index f8beea2..f0e3757 100644 --- a/setup.py +++ b/setup.py @@ -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",)),