Skip to content

Commit

Permalink
Updated version and CITATION.cff for v1.1.6.2402
Browse files Browse the repository at this point in the history
  • Loading branch information
numeredev committed Feb 5, 2024
1 parent 3f9fbd6 commit 166d0b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ abstract: >-
visualisation
license: GPL-3.0
commit: 2294ec1d4561c588eb5dc0b6b0973a689ac417a6
version: 1.1.5.2305
date-released: '2023-05-16'
version: 1.1.6.2402
date-released: '2024-02-05'
22 changes: 11 additions & 11 deletions kernel/core/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@
namespace AutoVersion{

//Date Version Types
static const char DATE[] = "16";
static const char MONTH[] = "05";
static const char YEAR[] = "2023";
static const char UBUNTU_VERSION_STYLE[] = "23.05";
static const char DATE[] = "05";
static const char MONTH[] = "02";
static const char YEAR[] = "2024";
static const char UBUNTU_VERSION_STYLE[] = "24.02";

//Software Status
static const char STATUS[] = "Cherenkov";
static const char STATUS_SHORT[] = "";
static const char STATUS[] = "Release Candidate";
static const char STATUS_SHORT[] = "rc";

//Standard Version Type
static const long MAJOR = 1;
static const long MINOR = 1;
static const long BUILD = 5;
static const long BUILD = 6;
static const long REVISION = 700;

//Miscellaneous Version Types
static const long BUILDS_COUNT = 4983;
#define RC_FILEVERSION 1,1,5,700
#define RC_FILEVERSION_STRING "1, 1, 5, 700\0"
static const char FULLVERSION_STRING [] = "1.1.5.700";
static const long BUILDS_COUNT = 5003;
#define RC_FILEVERSION 1,1,6,700
#define RC_FILEVERSION_STRING "1, 1, 6, 700\0"
static const char FULLVERSION_STRING [] = "1.1.6.700";

//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 0;
Expand Down

0 comments on commit 166d0b7

Please sign in to comment.