Skip to content

Commit c4f81f7

Browse files
committed
update version to 1.0.0
1 parent ee9cca8 commit c4f81f7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.21)
22

3-
project(gapp VERSION 0.3.0 LANGUAGES CXX)
3+
project(gapp VERSION 1.0.0 LANGUAGES CXX)
44

55
include(CheckIPOSupported)
66
include(CTest)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The library uses CMake as its build system. Assuming you have all of the require
6363
listed above, the steps for installing the library in Release config are:
6464

6565
```shell
66-
git clone https://github.com/KRM7/gapp.git --branch v0.3.0
66+
git clone https://github.com/KRM7/gapp.git --branch v1.0.0
6767
cd gapp/build
6868
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF
6969
cmake --build . --config Release
@@ -74,7 +74,7 @@ Alternatively, you can also use the install script that is provided with the lib
7474
will install all available configurations:
7575

7676
```shell
77-
git clone https://github.com/KRM7/gapp.git --branch v0.3.0
77+
git clone https://github.com/KRM7/gapp.git --branch v1.0.0
7878
sudo bash ./gapp/tools/install.sh
7979
```
8080

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class GappRecipe(ConanFile):
77
name = "gapp"
8-
version = "0.3.0"
8+
version = "1.0.0"
99
description = "A genetic algorithms library in C++ for single- and multi-objective optimization."
1010
topics = ("optimization", "multi-objective-optimization", "constrained-optimization", "genetic-algorithm", "cpp20")
1111
url = "https://github.com/KRM7/gapp"

docs/api/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project = "gapp"
2-
release = "0.3.0"
2+
release = "1.0.0"
33
author = "Krisztián Rugási"
44
copyright = "2025, Krisztián Rugási"
55

docs/install-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The library uses CMake as its build system, which can also be used to install it
4444

4545
```shell
4646
# Clone the repository
47-
git clone https://github.com/KRM7/gapp.git --branch v0.3.0
47+
git clone https://github.com/KRM7/gapp.git --branch v1.0.0
4848
# Go to the library's build directory
4949
cd gapp/build
5050
# Configure cmake with the relevant options
@@ -59,7 +59,7 @@ Alternatively, there is a utility script provided that can be used to
5959
install the library in fewer steps:
6060

6161
```shell
62-
git clone https://github.com/KRM7/gapp.git --branch v0.3.0
62+
git clone https://github.com/KRM7/gapp.git --branch v1.0.0
6363
sudo bash gapp/tools/install.sh
6464
```
6565

@@ -159,7 +159,7 @@ Include(FetchContent)
159159
FetchContent_Declare(
160160
gapp
161161
GIT_REPOSITORY https://github.com/KRM7/gapp.git
162-
GIT_TAG v0.3.0
162+
GIT_TAG v1.0.0
163163
)
164164
FetchContent_MakeAvailable(gapp)
165165

0 commit comments

Comments
 (0)