-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparation for Major Release 2.0.0 (#317)
* Update README.md * Update CXXGraphConfig.h * Update CMakeLists.txt
- Loading branch information
Showing
3 changed files
with
15 additions
and
13 deletions.
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
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 |
---|---|---|
|
@@ -55,29 +55,31 @@ If you are interested, please contact us at [email protected] or contribute to | |
| :heavy_check_mark: | Make CXXGraph MSVC-Compatible [#277](https://github.com/ZigRazor/CXXGraph/issues/277) | May 8, 2023 | | ||
| :heavy_check_mark: | All namespaces should be titlecase [#278](https://github.com/ZigRazor/CXXGraph/issues/278) | May 8, 2023 | | ||
| :heavy_check_mark: | Release 1.1.0 | May 8, 2023 | | ||
| :heavy_check_mark: | Smart Pointers use [#234](https://github.com/ZigRazor/CXXGraph/issues/234) | Jun 1, 2023 | | ||
| :heavy_check_mark: | Release 2.0.0 | Jun 1, 2023 | | ||
| :memo: |Switch to C++ 20 standard [#266](https://github.com/ZigRazor/CXXGraph/issues/266) | TBD | | ||
| :memo: | Markov Chain Algorithm [#107](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD | | ||
| :memo: | Release 1.2.1 | TBD | | ||
| :memo: | Release 2.1.0 | TBD | | ||
| :memo: | FP-GraphMiner algorithm [#105](https://github.com/ZigRazor/CXXGraph/issues/105) | TBD | | ||
| :memo: | Release 1.2.2 | TBD | | ||
| :memo: | Release 2.1.1 | TBD | | ||
| :memo: | Tarjan's algorithm [#103](https://github.com/ZigRazor/CXXGraph/issues/103) | TBD | | ||
| :memo: | Release 1.2.3 | TBD | | ||
| :memo: | Release 2.1.2 | TBD | | ||
| :heavy_check_mark: | Graph Topological Sort [#104](https://github.com/ZigRazor/CXXGraph/issues/107) | Nov 3, 2022 | | ||
| :memo: | Official Site Release | TBD | | ||
| :memo: | Release 1.3.0 | TBD | | ||
| :memo: | Release 2.2.0 | TBD | | ||
| :memo: | Custom export and import [#19](https://github.com/ZigRazor/CXXGraph/issues/19) | TBD | | ||
| :memo: | Input & Output file format [#172](https://github.com/ZigRazor/CXXGraph/issues/172) | TBD | | ||
| :memo: | Release 1.4.0 | TBD | | ||
| :memo: | Release 2.3.0 | TBD | | ||
| :heavy_check_mark: | Multi-Thread implementation of BFS [#121](https://github.com/ZigRazor/CXXGraph/issues/121) | Dec 6, 2022 | | ||
| :memo: | Release 1.5.1 | TBD | | ||
| :memo: | Release 2.4. | TBD | | ||
| :grey_exclamation: | Thread Safe implementations of Boruvka, Prim & Kruskal algorithm [#128](https://github.com/ZigRazor/CXXGraph/issues/128) | Oct 5, 2022 | | ||
| :memo: | Release 1.6.0 | TBD | | ||
| :memo: | Release 2.5.0 | TBD | | ||
| :memo: | Edge-Cut Partition Algorithm [#183](https://github.com/ZigRazor/CXXGraph/issues/183) | TBD | | ||
| :memo: | Release 1.6.1 | TBD | | ||
| :memo: | Release 2.5.1 | TBD | | ||
| :heavy_check_mark: | WB-Libra Parttition Algorithm [#178](https://github.com/ZigRazor/CXXGraph/issues/178) | Nov 25, 2022 | | ||
| :memo: | Release 1.7.0 | TBD | | ||
| :memo: | Release 2.6.0 | TBD | | ||
| :memo: | Introduce Hypergraph [#122](https://github.com/ZigRazor/CXXGraph/issues/122) | TBD | | ||
| :memo: | Stable Release 2.0.0 | TBD | | ||
| :memo: | Stable Release 3.0.0 | TBD | | ||
| :memo: | TBD | TBD | | ||
|
||
## Table of Contents | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// the configured options and settings for CXXGraph | ||
#define CXXGraph_VERSION_MAJOR 1 | ||
#define CXXGraph_VERSION_MINOR 1 | ||
#define CXXGraph_VERSION_MAJOR 2 | ||
#define CXXGraph_VERSION_MINOR 0 | ||
#define CXXGraph_VERSION_PATCH 0 |