diff --git a/CMakeLists.txt b/CMakeLists.txt index 07582fdc9..8135ce0d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.9) # set the project name and version -project(CXXGraph VERSION 0.2.0) +project(CXXGraph VERSION 0.3.0) configure_file(CXXGraphConfig.h.in ${PROJECT_SOURCE_DIR}/include/CXXGraphConfig.h) diff --git a/docs/Doxyfile b/docs/Doxyfile index b602bb5c6..a34d5b699 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "CXXGraph" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.2.0 +PROJECT_NUMBER = 0.3.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/include/CXXGraph.hpp b/include/CXXGraph.hpp index 94fe0f3a3..6d59cbded 100644 --- a/include/CXXGraph.hpp +++ b/include/CXXGraph.hpp @@ -15,6 +15,9 @@ #include "Partitioning/CoordinatedPartitionState.hpp" #include "Partitioning/CoordinatedRecord.hpp" #include "Partitioning/HDRF.hpp" +#include "Partitioning/EBV.hpp" +#include "Partitioning/EdgeBalancedVertexCut.hpp" +#include "Partitioning/GreedyVertexCut.hpp" #include "Partitioning/PartitionAlgorithm.hpp" #include "Partitioning/Partitioner.hpp" #include "Partitioning/PartitionerThread.hpp" diff --git a/packaging/haxelib.json b/packaging/haxelib.json index bf89ce56b..085b82051 100644 --- a/packaging/haxelib.json +++ b/packaging/haxelib.json @@ -4,9 +4,9 @@ "license": "GPL", "tags": ["Algorithm", "Cpp"], "description": "Header-Only C++ Library for Graph Representation and Algorithms", - "version": "0.2.0", + "version": "0.3.0", "classPath": "", - "releasenote": "Release 0.2.0 see https://github.com/ZigRazor/CXXGraph/releases/tag/v0.2.0 for more details", + "releasenote": "Release 0.3.0 see https://github.com/ZigRazor/CXXGraph/releases/tag/v0.3.0 for more details", "contributors": ["ZigRazor"], "dependencies": {} } \ No newline at end of file