From 95efee2bab613383d32d6e00d6a1b606e7a95e73 Mon Sep 17 00:00:00 2001 From: Radomir Stevanovic Date: Wed, 1 May 2019 15:33:56 -0700 Subject: [PATCH] Bump version to 0.2.1 Changes since 0.2.0: New components - `MergeSamples` that vertically stacks SampleSets from multiple States - `SliceSamples` that slices the set of samples (and trivially truncates) Performance improvements - Multi-threaded support in Tabu and Simulated Annealing samplers General - Added `States.first` property Fixes - Compatibility with `dimod==0.8.8` (breaking change of `SampleSet.samples()` behaviour) --- hybrid/package_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hybrid/package_info.py b/hybrid/package_info.py index eada5281..258b0974 100644 --- a/hybrid/package_info.py +++ b/hybrid/package_info.py @@ -14,7 +14,7 @@ __packagename__ = 'dwave-hybrid' __title__ = 'D-Wave Hybrid' -__version__ = '0.2.0' +__version__ = '0.2.1' __author__ = 'D-Wave Systems Inc.' __authoremail__ = 'radomir@dwavesys.com' __description__ = 'Hybrid Asynchronous Decomposition Solver Framework'