Skip to content

Commit

Permalink
Updated version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
lluisalemanypuig committed Jan 11, 2023
1 parent 5532f0f commit 29e23ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lal/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.10.2)

# project's version
set(LAL_MAJOR 99.99)
set(LAL_PATCH 99)
set(LAL_MAJOR 23.01)
set(LAL_PATCH 00)

# project declaration
project(LAL VERSION "${LAL_MAJOR}.${LAL_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions lal/lal.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TEMPLATE = lib

VERSION_MAJOR = 99.99
VERSION_BUILD = 99
VERSION_MAJOR = 23.01
VERSION_BUILD = 00
VERSION = $${VERSION_MAJOR}.$${VERSION_BUILD}

CONFIG += c++17
Expand Down
8 changes: 4 additions & 4 deletions lal/lal_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ namespace lal {

#ifdef SWIG
/// Major version number of the library's current state. The year and month in which it was released.
const std::string __lal_major_verno = "99.99";
const std::string __lal_major_verno = "23.01";
/// Patch version number of the library's current state. Patch number.
const std::string __lal_patch_verno = "99";
const std::string __lal_patch_verno = "00";
#else
/// Major version number of the library's current state. The year and month in which it was released.
constexpr std::string_view __lal_major_verno = "99.99";
constexpr std::string_view __lal_major_verno = "23.01";
/// Patch version number of the library's current state.
constexpr std::string_view __lal_patch_verno = "99";
constexpr std::string_view __lal_patch_verno = "00";
#endif

};

0 comments on commit 29e23ff

Please sign in to comment.