Skip to content

Commit b79de88

Browse files
committed
2.6.1
Bumping the version for vcpkg release
1 parent 883576e commit b79de88

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.5)
22

3-
project(hfsm2 VERSION 2.6.0 LANGUAGES CXX)
3+
project(hfsm2 VERSION 2.6.1 LANGUAGES CXX)
44

55
# Create an interface library (header-only)
66
add_library(${PROJECT_NAME} INTERFACE)

development/hfsm2/machine_dev.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// HFSM2 (hierarchical state machine for games and interactive applications)
2-
// 2.6.0 (2025-02-01)
2+
// 2.6.1 (2025-03-19)
33
//
44
// Created by Andrew Gresyk
55
//
@@ -33,7 +33,7 @@
3333

3434
#define HFSM2_VERSION_MAJOR 2
3535
#define HFSM2_VERSION_MINOR 6
36-
#define HFSM2_VERSION_PATCH 0
36+
#define HFSM2_VERSION_PATCH 1
3737

3838
#define HFSM2_VERSION (10000 * HFSM2_VERSION_MAJOR + 100 * HFSM2_VERSION_MINOR + HFSM2_VERSION_PATCH)
3939

include/hfsm2/machine.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// HFSM2 (hierarchical state machine for games and interactive applications)
2-
// 2.6.0 (2025-02-01)
2+
// 2.6.1 (2025-03-19)
33
//
44
// Created by Andrew Gresyk
55
//
@@ -33,7 +33,7 @@
3333

3434
#define HFSM2_VERSION_MAJOR 2
3535
#define HFSM2_VERSION_MINOR 6
36-
#define HFSM2_VERSION_PATCH 0
36+
#define HFSM2_VERSION_PATCH 1
3737

3838
#define HFSM2_VERSION (10000 * HFSM2_VERSION_MAJOR + 100 * HFSM2_VERSION_MINOR + HFSM2_VERSION_PATCH)
3939

0 commit comments

Comments
 (0)