Skip to content

Commit

Permalink
bump version to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KRM7 committed Dec 11, 2024
1 parent b615ebd commit 78634f0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion docs/api/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/install-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 78634f0

Please sign in to comment.