Skip to content

Commit

Permalink
Preparation for Major Release 2.0.0 (#317)
Browse files Browse the repository at this point in the history
* Update README.md

* Update CXXGraphConfig.h

* Update CMakeLists.txt
  • Loading branch information
ZigRazor authored Jun 5, 2023
1 parent 90a9973 commit d862cb0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.9)

# set the project name and version
project(CXXGraph VERSION 1.1.0)
project(CXXGraph VERSION 2.0.0)

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

Expand Down
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions include/CXXGraphConfig.h
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

0 comments on commit d862cb0

Please sign in to comment.