Skip to content

Commit 0d8ea35

Browse files
authored
Merge pull request #347 from rest-for-physics/release_v2.3.14
Release v2.3.14
2 parents 7877c37 + 6e4546f commit 0d8ea35

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

scripts/generateVersionHeader.py

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323
print('')
2424
exit(1)
2525

26+
print("Each REST official release takes the name of a researcher that did a major contribution to sciences.")
27+
print("We will search for particle physicists, physicists, mathematicians or any other discipline in that order." )
28+
print("We will then use the birthdate to decide which physicist or scientist deserves the name of the release.")
29+
print("")
30+
releaseName = input("Please, enter the name of the candidate!: ")
31+
32+
print( "Release name : " + str(releaseName) )
33+
2634
outputHeader = 'TRestVersion.h'
2735
if len(sys.argv) >= 2:
2836
outputHeader = sys.argv[1]
@@ -106,6 +114,7 @@
106114
f.write('#define REST_RELEASE "' + restRelease + '"\n')
107115
f.write('#define REST_RELEASE_DATE "' + date + '"\n')
108116
f.write('#define REST_RELEASE_TIME "' + time + '"\n')
117+
f.write('#define REST_RELEASE_NAME "' + releaseName + '"\n')
109118
f.write('#define REST_GIT_COMMIT "' + commit[0:8] + '"\n')
110119
f.write('#define REST_VERSION_CODE ' + str(code) + '\n')
111120
f.write('#define REST_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))\n'

source/framework/core/inc/TRestVersion.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
* #endif
1212
*
1313
*/
14-
#define REST_RELEASE "2.3.13"
15-
#define REST_RELEASE_DATE "Thu 29 Sep"
16-
#define REST_RELEASE_TIME "2022 09:59:23 PM CEST"
17-
#define REST_GIT_COMMIT "46855729"
18-
#define REST_VERSION_CODE 131853
14+
#define REST_RELEASE "2.3.14"
15+
#define REST_RELEASE_DATE "Thu 15 Dec"
16+
#define REST_RELEASE_TIME "2022 10:01:56 AM CET"
17+
#define REST_RELEASE_NAME "Henri Becquerel"
18+
#define REST_GIT_COMMIT "81928e9f"
19+
#define REST_VERSION_CODE 131854
1920
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
2021
#define REST_SCHEMA_EVOLUTION "ON"
2122
#endif

source/libraries/axion

Submodule axion updated 135 files

source/packages/restG4

Submodule restG4 updated 40 files

0 commit comments

Comments
 (0)