Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
flooklab authored Jan 9, 2025
1 parent 5cf068e commit 7800d4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose type of build (Debug or Release)")
endif(NOT CMAKE_BUILD_TYPE)

project(SPNV VERSION 0.1.0 LANGUAGES CXX)
project(SPNV VERSION 0.1.1 LANGUAGES CXX)

set(EXECUTABLE_NAME ${PROJECT_NAME})

Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = SPNV
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.1
PROJECT_NUMBER = 0.1.1

# 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
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ inline constexpr char programName[] = "SPNV"; ///< Name of

inline constexpr int spnvVersionMajor = 0; ///< Program version major number.
inline constexpr int spnvVersionMinor = 1; ///< Program version minor number.
inline constexpr int spnvVersionPatch = 0; ///< Program version patch number.
inline constexpr int spnvVersionPatch = 1; ///< Program version patch number.
inline constexpr ReleaseType spnvVersionType = ReleaseType::Normal; ///< Program version release type.

std::string toString(); ///< Get the program version formatted as string.
Expand Down

0 comments on commit 7800d4f

Please sign in to comment.