From 1c5fc6861957c10c394deef3f721d6c46318d7a0 Mon Sep 17 00:00:00 2001 From: Alex-Kolar Date: Mon, 12 Sep 2022 12:16:52 -0500 Subject: [PATCH] Update version to 0.5.0 --- CHANGELOG.md | 12 ++++++++++++ docs/source/conf.py | 2 +- setup.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe78c60a..61ea2b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -96,3 +96,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This removes support for Python 3.7 and below - Bug fixes to tutorial chapter 3 - Typo fixes to docstrings in reservation.py + +## [0.5.0] +### Added +- Tutorial materials for IEEE Quantum Week 2022 tutorial session + +### Changed +- Reworked interface for nodes and hardware elements + - New Entity interface for receiving/passing photons + - New method for nodes to handle incoming and outgoing qubits + - Polished observer functionality +- Reworked some protocols to utilize new interface +- Some bug fixes for GUI diff --git a/docs/source/conf.py b/docs/source/conf.py index 73264f2f..276dc77c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara' # The full version, including alpha/beta/rc tags -release = '0.4.0' +release = '0.5.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index b3ddff13..ea59f9e7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="sequence", - version="0.4.0", + version="0.5.0", author="Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara", author_email="xwu64@hawk.iit.edu, chungmiranda@anl.gov, akolar@anl.gov, akiefer@iu.edu, eugenewang@yahoo.com, tzh@uchicago.edu, kettimut@mcs.anl.gov, msuchara@anl.gov", description="Simulator of Quantum Network Communication: SEQUENCE-Python is a prototype version of the official SEQUENCE release.",