From a174ddd16750165d72f856064e92dfadcaa1b541 Mon Sep 17 00:00:00 2001 From: Alexander Condello Date: Wed, 12 Jun 2019 13:56:59 -0700 Subject: [PATCH] Update version 0.8.12 -> 0.8.13 New Features ------------ * `TrackingComposite`, a new composite that records inputs and outputs for testing * `NullSampler`, a new sampler that always returns an empty sample set * `child_structure_dfs` function that searches child samplers for a structured * `HigherOrderComposite` now supports the `initial_state` keyword argument * `BinaryQuadraticModel.is_writeable` flag that toggles whether the BQM is treated as immutable or not * `SampleSet.is_writeable` flag that toggles whether the sample set is treated as immutable or not --- dimod/package_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dimod/package_info.py b/dimod/package_info.py index e8b195b9b..7d84678ce 100644 --- a/dimod/package_info.py +++ b/dimod/package_info.py @@ -14,7 +14,7 @@ # # ================================================================================================ -__version__ = '0.8.12' +__version__ = '0.8.13' __author__ = 'D-Wave Systems Inc.' __authoremail__ = 'acondello@dwavesys.com' __description__ = 'A shared API for binary quadratic model samplers.'