From b847d2c95f0d4801ce882660acebbfe87f640a5a Mon Sep 17 00:00:00 2001 From: Caitao Zhan Date: Thu, 26 Sep 2024 19:10:56 -0500 Subject: [PATCH] update to version 0.6.4 --- CHANGELOG.md | 7 +++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- sequence/__init__.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65eba7fb..6e2c992c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -205,3 +205,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed support for Python 3.8 - Removed `setup.py` - Removed `MANIFEST.in` + + +## [0.6.4] +### Changed +- Use `Read the Docs` for documentation. Update documentation. Old documentation website becomes obsolete. +- Fix a bug in reservation protocol and routing protocol that may lead to route for src->dst being different than dst->src when the network has same length edges. +- Update comments and README.md diff --git a/docs/source/conf.py b/docs/source/conf.py index 11c233fa..df8ad1e8 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.6.3' +release = '0.6.4' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 1d8a1f86..066e7c71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sequence" -version = "0.6.3.2" +version = "0.6.4" authors = [ {name = "Xiaoliang Wu, Joaquin Chung, Alexander Kolar, Alexander Kiefer, Eugene Wang, Tian Zhong, Rajkumar Kettimuthu, Martin Suchara", email = "chungmiranda@anl.gov"} ] diff --git a/sequence/__init__.py b/sequence/__init__.py index 4c9badab..fb915978 100644 --- a/sequence/__init__.py +++ b/sequence/__init__.py @@ -1,7 +1,7 @@ __all__ = ['app', 'components', 'entanglement_management', 'kernel', 'network_management', 'qkd', 'resource_management', 'topology', 'utils', 'message', 'protocol', 'gui'] -__version__ = '0.6.3' +__version__ = '0.6.4' def __dir__(): return sorted(__all__)