From 3c03bcb7472bdbb35b0025fa16ca4035045cb2e8 Mon Sep 17 00:00:00 2001 From: Theodor Date: Thu, 16 Dec 2021 15:08:37 -0500 Subject: [PATCH] Increment version number to 0.21.0 (#666) * bump version * bump tw requirement --- .github/CHANGELOG.md | 6 ++---- requirements.txt | 2 +- setup.py | 2 +- strawberryfields/_version.py | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 7dd5cdc66..1cb913dfa 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,4 +1,4 @@ -# Release 0.21.0 (development release) +# Release 0.21.0 (current release)

New features since last release

@@ -37,8 +37,6 @@ MeasureFock | [0]; ``` -

Breaking Changes

-

Bug fixes

* The `TDMProgram.compile_info` and `TDMProgram.target` fields are now set when @@ -81,7 +79,7 @@ This release contains contributions from (in alphabetical order): Theodor Isacsson -# Release 0.20.0 (current release) +# Release 0.20.0

New features since last release

diff --git a/requirements.txt b/requirements.txt index e28f2ba47..85eabb127 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ scipy==1.7.1 sympy==1.8 tensorflow==2.6.1 tensorboard==2.6.0 -thewalrus==0.17.0 +thewalrus==0.18.0 toml==0.10.2 typing-extensions==3.7.4 urllib3==1.25.8 diff --git a/setup.py b/setup.py index 6423f1d19..c7659a4d8 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ "requests>=2.22.0", "scipy>=1.0.0", "sympy>=1.5", - "thewalrus>=0.17.0", + "thewalrus>=0.18.0", "toml", "urllib3>=1.25.3", "quantum-xir>=0.1.1", diff --git a/strawberryfields/_version.py b/strawberryfields/_version.py index c950528ad..4e8b3dae9 100644 --- a/strawberryfields/_version.py +++ b/strawberryfields/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.21.0-dev" +__version__ = "0.21.0"