From 52e55d63e6d13dce0a3e924665ae444de13c59ce Mon Sep 17 00:00:00 2001 From: Theodor Date: Thu, 18 Nov 2021 20:58:36 -0500 Subject: [PATCH] Increment version to 0.20.0 (#657) * bump release * update tw requirement --- .github/CHANGELOG.md | 18 +++++++++++------- doc/requirements.txt | 2 +- requirements-ci.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- strawberryfields/_version.py | 2 +- 6 files changed, 16 insertions(+), 12 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 68b7060d0..4b7d90d26 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,4 +1,4 @@ -# Release 0.20.0 (development release) +# Release 0.20.0 (current release)

New features since last release

@@ -320,7 +320,10 @@ passed at initialization. * The `api` subpackage has been removed and the contained `DeviceSpec` and `Result` classes have - been moved to the root `strawberryfields` folder. They can now be imported as follows: + been moved to the root `strawberryfields` folder. + [(#652)](https://github.com/XanaduAI/strawberryfields/pull/652) + + They can now be imported as follows: ```python import strawberryfields as sf @@ -328,18 +331,19 @@ # sf.Result ``` -

Bug fixes

-

Documentation

+* Strawberry Fields interactive has been removed from the documentation. +[(#635)](https://github.com/XanaduAI/strawberryfields/pull/635) +

Contributors

This release contains contributions from (in alphabetical order): -Mikhail Andrenkov, Sebastián Duque Mesa, Theodor Isacsson, Filippo Miatto, Nicolás Quesada, Antal -Száva, Yuan Yao. +Mikhail Andrenkov, Sebastián Duque Mesa, Theodor Isacsson, Josh Izaac, Filippo Miatto, Nicolás +Quesada, Antal Száva, Yuan Yao. -# Release 0.19.0 (current release) +# Release 0.19.0

New features since last release

diff --git a/doc/requirements.txt b/doc/requirements.txt index 05f837f12..fdb9c0d12 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -15,5 +15,5 @@ sphinx-copybutton sphinx-automodapi sphinxcontrib-bibtex==0.4.2 tensorflow==2.6.1 -http://xanadu-wheels.s3-website-us-east-1.amazonaws.com/thewalrus-0.17.0.dev0+20211117203611-cp38-cp38-manylinux2014_x86_64.whl#sha256=f8cef1f05a903eec2b563758b7542490681dfc899e57cce1542385546e222306 +thewalrus>=0.17.0 toml diff --git a/requirements-ci.txt b/requirements-ci.txt index 30ca91abd..8668386c3 100644 --- a/requirements-ci.txt +++ b/requirements-ci.txt @@ -6,7 +6,7 @@ tensorboard networkx quantum-blackbird python-dateutil -http://xanadu-wheels.s3-website-us-east-1.amazonaws.com/thewalrus-0.17.0.dev0+20211117203611-cp38-cp38-manylinux2014_x86_64.whl#sha256=f8cef1f05a903eec2b563758b7542490681dfc899e57cce1542385546e222306 +thewalrus>=0.17.0 toml appdirs numba diff --git a/requirements.txt b/requirements.txt index 45d3ab9c2..1c72c2fd0 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.16.2 +thewalrus==0.17.0 toml==0.10.2 typing-extensions==3.7.4 urllib3==1.25.8 diff --git a/setup.py b/setup.py index e583fcdf1..53a1eb005 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ "requests>=2.22.0", "scipy>=1.0.0", "sympy>=1.5", - "thewalrus>=0.15.0", + "thewalrus>=0.17.0", "toml", "urllib3>=1.25.3", "xanadu-cloud-client>=0.1.1", diff --git a/strawberryfields/_version.py b/strawberryfields/_version.py index 5394cb25d..0c2c7c68f 100644 --- a/strawberryfields/_version.py +++ b/strawberryfields/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.20.0-dev" +__version__ = "0.20.0"