Skip to content

Commit d862cb0

Browse files
authored
Preparation for Major Release 2.0.0 (#317)
* Update README.md * Update CXXGraphConfig.h * Update CMakeLists.txt
1 parent 90a9973 commit d862cb0

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.9)
22

33
# set the project name and version
4-
project(CXXGraph VERSION 1.1.0)
4+
project(CXXGraph VERSION 2.0.0)
55

66
configure_file(CXXGraphConfig.h.in ${PROJECT_SOURCE_DIR}/include/CXXGraphConfig.h)
77

README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -55,29 +55,31 @@ If you are interested, please contact us at [email protected] or contribute to
5555
| :heavy_check_mark: | Make CXXGraph MSVC-Compatible [#277](https://github.com/ZigRazor/CXXGraph/issues/277) | May 8, 2023 |
5656
| :heavy_check_mark: | All namespaces should be titlecase [#278](https://github.com/ZigRazor/CXXGraph/issues/278) | May 8, 2023 |
5757
| :heavy_check_mark: | Release 1.1.0 | May 8, 2023 |
58+
| :heavy_check_mark: | Smart Pointers use [#234](https://github.com/ZigRazor/CXXGraph/issues/234) | Jun 1, 2023 |
59+
| :heavy_check_mark: | Release 2.0.0 | Jun 1, 2023 |
5860
| :memo: |Switch to C++ 20 standard [#266](https://github.com/ZigRazor/CXXGraph/issues/266) | TBD |
5961
| :memo: | Markov Chain Algorithm [#107](https://github.com/ZigRazor/CXXGraph/issues/107) | TBD |
60-
| :memo: | Release 1.2.1 | TBD |
62+
| :memo: | Release 2.1.0 | TBD |
6163
| :memo: | FP-GraphMiner algorithm [#105](https://github.com/ZigRazor/CXXGraph/issues/105) | TBD |
62-
| :memo: | Release 1.2.2 | TBD |
64+
| :memo: | Release 2.1.1 | TBD |
6365
| :memo: | Tarjan's algorithm [#103](https://github.com/ZigRazor/CXXGraph/issues/103) | TBD |
64-
| :memo: | Release 1.2.3 | TBD |
66+
| :memo: | Release 2.1.2 | TBD |
6567
| :heavy_check_mark: | Graph Topological Sort [#104](https://github.com/ZigRazor/CXXGraph/issues/107) | Nov 3, 2022 |
6668
| :memo: | Official Site Release | TBD |
67-
| :memo: | Release 1.3.0 | TBD |
69+
| :memo: | Release 2.2.0 | TBD |
6870
| :memo: | Custom export and import [#19](https://github.com/ZigRazor/CXXGraph/issues/19) | TBD |
6971
| :memo: | Input & Output file format [#172](https://github.com/ZigRazor/CXXGraph/issues/172) | TBD |
70-
| :memo: | Release 1.4.0 | TBD |
72+
| :memo: | Release 2.3.0 | TBD |
7173
| :heavy_check_mark: | Multi-Thread implementation of BFS [#121](https://github.com/ZigRazor/CXXGraph/issues/121) | Dec 6, 2022 |
72-
| :memo: | Release 1.5.1 | TBD |
74+
| :memo: | Release 2.4. | TBD |
7375
| :grey_exclamation: | Thread Safe implementations of Boruvka, Prim & Kruskal algorithm [#128](https://github.com/ZigRazor/CXXGraph/issues/128) | Oct 5, 2022 |
74-
| :memo: | Release 1.6.0 | TBD |
76+
| :memo: | Release 2.5.0 | TBD |
7577
| :memo: | Edge-Cut Partition Algorithm [#183](https://github.com/ZigRazor/CXXGraph/issues/183) | TBD |
76-
| :memo: | Release 1.6.1 | TBD |
78+
| :memo: | Release 2.5.1 | TBD |
7779
| :heavy_check_mark: | WB-Libra Parttition Algorithm [#178](https://github.com/ZigRazor/CXXGraph/issues/178) | Nov 25, 2022 |
78-
| :memo: | Release 1.7.0 | TBD |
80+
| :memo: | Release 2.6.0 | TBD |
7981
| :memo: | Introduce Hypergraph [#122](https://github.com/ZigRazor/CXXGraph/issues/122) | TBD |
80-
| :memo: | Stable Release 2.0.0 | TBD |
82+
| :memo: | Stable Release 3.0.0 | TBD |
8183
| :memo: | TBD | TBD |
8284

8385
## Table of Contents

include/CXXGraphConfig.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// the configured options and settings for CXXGraph
2-
#define CXXGraph_VERSION_MAJOR 1
3-
#define CXXGraph_VERSION_MINOR 1
2+
#define CXXGraph_VERSION_MAJOR 2
3+
#define CXXGraph_VERSION_MINOR 0
44
#define CXXGraph_VERSION_PATCH 0

0 commit comments

Comments
 (0)