-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from atlanticwave-sdx/116.pce-2.0.0
Prepare pce for 2.0.0
- Loading branch information
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [2.0.0] - 2023-05-31 | ||
|
||
### Added | ||
|
||
- Move connection breakdown logic from datamodel to pce (#96) | ||
- Code formatting checks on CI (#74) | ||
- Cache dependencies on CI (#53) | ||
- Code coverage reporting with coveralls.io (#51) | ||
|
||
### Fixed | ||
|
||
- Add domains in path breakdowns (#111, #113, #115) | ||
- Add error checks to `TEManager` (#108) | ||
|
||
### Changed | ||
|
||
- Update README (#91) | ||
- Refactor connection breakdown logic (#98) | ||
- Update solver output (#93) | ||
- Make pygraphviz an optional dependency (#90) | ||
- Refactor tests (#88) | ||
- Rename modules, classes, and methods to be PEP8-compliant (#84) | ||
- Stricter linting on CI (#75) | ||
- Module organization updates (#79) | ||
- Re-write of PCE functions (#50, #22, #45, #47, #48) | ||
|
||
### Removed | ||
|
||
- Remove unused `weight_assign` (#89) | ||
- Remove old PCE functions (#83) | ||
|
||
## [1.0.0] - 2022-06-22 | ||
|
||
No Changelog entries available. | ||
|
||
|
||
[2.0.0]: https://github.com/atlanticwave-sdx/pce/compare/1.0.0...2.0.0 | ||
[1.0.0]: https://github.com/atlanticwave-sdx/pce/compare/60af115...1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[metadata] | ||
name = pce | ||
version = 0.0.1 | ||
version = 2.0.0 | ||
author = Yufeng Xin, Yifei Wang | ||
author_email = [email protected] | ||
description = Heuristic and Optimal Algorithms for CSP and TE Computation | ||
|