Skip to content

Commit

Permalink
update to version 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
caitaozhan committed Sep 27, 2024
1 parent 28f72e6 commit b847d2c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"}
]
Expand Down
2 changes: 1 addition & 1 deletion sequence/__init__.py
Original file line number Diff line number Diff line change
@@ -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__)

0 comments on commit b847d2c

Please # to comment.