diff --git a/CHANGELOG.md b/CHANGELOG.md index 4015a3009..cfaee7f2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 4.13.1 (2024-07-25) + +### Fixes + +#### Client configuration is passed to all qcs_sdk methods (#1792) + +## 4.13.1-rc.0 (2024-07-25) + +### Fixes + +#### Client configuration is passed to all qcs_sdk methods (#1792) + ## 4.13.0 (2024-07-16) ### Features diff --git a/pyproject.toml b/pyproject.toml index 770aa764c..f4ab27899 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyquil" -version = "4.13.0" +version = "4.13.1" description = "A Python library for creating Quantum Instruction Language (Quil) programs." authors = ["Rigetti Computing "] readme = "README.md" diff --git a/pyquil/api/_compiler.py b/pyquil/api/_compiler.py index 2729fa612..0ce1e9228 100644 --- a/pyquil/api/_compiler.py +++ b/pyquil/api/_compiler.py @@ -122,6 +122,7 @@ def native_quil_to_executable( num_shots=nq_program.num_shots, quantum_processor_id=self.quantum_processor_id, translation_options=api_options or self.api_options, + client=self._client_configuration, ) ro_sources = translated_program.ro_sources or {} @@ -135,6 +136,7 @@ def native_quil_to_executable( def _fetch_calibration_program(self) -> Program: response = get_quilt_calibrations( quantum_processor_id=self.quantum_processor_id, + client=self._client_configuration, ) return Program(response)