diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8f758..8de96cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v0.1.2 (2024-09-24) + +### What's Changed +* doc: Add syntax highlighting to Python code blocks by @josh146 in https://github.com/amazon-braket/autoqasm/pull/43 +* doc: Update CODEOWNERS file by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/42 +* fix: Ensure all tests use valid OpenQASM and upgrade to latest Braket SDK by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/45 +* doc: Highlight Python syntax in md files by @rmshaffer in https://github.com/amazon-braket/autoqasm/pull/44 + +### New Contributors +* @josh146 made their first contribution in https://github.com/amazon-braket/autoqasm/pull/43 + +**Full Changelog**: https://github.com/amazon-braket/autoqasm/compare/v0.1.1...v0.1.2 + ## v0.1.1 (2024-06-17) ### What's Changed diff --git a/setup.py b/setup.py index 1ca56d4..3fa424d 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="autoqasm", - version="0.1.1", + version="0.1.2", license="Apache License 2.0", python_requires=">= 3.9", packages=find_namespace_packages(where="src", exclude=("test",)),