diff --git a/CMakeLists.txt b/CMakeLists.txt index 3aad4398..43794402 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(gapp VERSION 0.2.0 LANGUAGES CXX) +project(gapp VERSION 0.3.0 LANGUAGES CXX) include(CheckIPOSupported) include(CTest) diff --git a/README.md b/README.md index 5e630e74..6fe00960 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The library uses CMake as its build system. Assuming you have all of the require listed above, the steps for installing the library in Release config are: ```shell -git clone https://github.com/KRM7/gapp.git --branch v0.2.0 +git clone https://github.com/KRM7/gapp.git --branch v0.3.0 cd gapp/build cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF cmake --build . --config Release @@ -74,7 +74,7 @@ Alternatively, you can also use the install script that is provided with the lib will install all available configurations: ```shell -git clone https://github.com/KRM7/gapp.git --branch v0.2.0 +git clone https://github.com/KRM7/gapp.git --branch v0.3.0 sudo bash ./gapp/tools/install.sh ``` diff --git a/conanfile.py b/conanfile.py index 5c5d5759..77f5d343 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,9 +5,9 @@ class GappRecipe(ConanFile): name = "gapp" - version = "0.2.0" + version = "0.3.0" description = "A genetic algorithms library in C++ for single- and multi-objective optimization." - topics = ("optimization", "multi-objective-optimization", "genetic-algorithm", "cpp20") + topics = ("optimization", "multi-objective-optimization", "constrained-optimization", "genetic-algorithm", "cpp20") url = "https://github.com/KRM7/gapp" license = "MIT" diff --git a/docs/api/Doxyfile b/docs/api/Doxyfile index e3b47393..b0e238b3 100644 --- a/docs/api/Doxyfile +++ b/docs/api/Doxyfile @@ -16,7 +16,7 @@ PROJECT_NAME = gapp # 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/docs/install-guide.md b/docs/install-guide.md index a8f85dd4..738cc920 100644 --- a/docs/install-guide.md +++ b/docs/install-guide.md @@ -44,7 +44,7 @@ The library uses CMake as its build system, which can also be used to install it ```shell # Clone the repository -git clone https://github.com/KRM7/gapp.git --branch v0.2.0 +git clone https://github.com/KRM7/gapp.git --branch v0.3.0 # Go to the library's build directory cd gapp/build # Configure cmake with the relevant options @@ -59,7 +59,7 @@ Alternatively, there is a utility script provided that can be used to install the library in fewer steps: ```shell -git clone https://github.com/KRM7/gapp.git --branch v0.2.0 +git clone https://github.com/KRM7/gapp.git --branch v0.3.0 sudo bash gapp/tools/install.sh ``` @@ -159,7 +159,7 @@ Include(FetchContent) FetchContent_Declare( gapp GIT_REPOSITORY https://github.com/KRM7/gapp.git - GIT_TAG v0.2.0 + GIT_TAG v0.3.0 ) FetchContent_MakeAvailable(gapp)