mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
CONFIG: bump API to 1906 (pre-release)
- adjust copyright dates for manpages
This commit is contained in:
committed by
Andrew Heather
parent
b01611a126
commit
f05ff81722
@ -1,2 +1,2 @@
|
|||||||
api=1904
|
api=1906
|
||||||
patch=0
|
patch=0
|
||||||
|
|||||||
@ -33,6 +33,12 @@ License
|
|||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// Convert api number (YYMM) -> 20YY. Eg, 1906 -> 2019
|
||||||
|
static inline int apiYear()
|
||||||
|
{
|
||||||
|
return 2000 + (foamVersion::api / 100);
|
||||||
|
}
|
||||||
|
|
||||||
// manpage Footer
|
// manpage Footer
|
||||||
static inline void printManFooter()
|
static inline void printManFooter()
|
||||||
{
|
{
|
||||||
@ -40,7 +46,7 @@ static inline void printManFooter()
|
|||||||
<< "Online documentation "
|
<< "Online documentation "
|
||||||
<< "https://www.openfoam.com/documentation/" << nl
|
<< "https://www.openfoam.com/documentation/" << nl
|
||||||
<< ".SH COPYRIGHT" << nl
|
<< ".SH COPYRIGHT" << nl
|
||||||
<< "Copyright \\(co 2018 OpenCFD Ltd." << nl;
|
<< "Copyright \\(co 2018-" << apiYear() << " OpenCFD Ltd." << nl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
#-------------------------------*- makefile -*---------------------------------
|
#-------------------------------*- makefile -*---------------------------------
|
||||||
WM_VERSION = OPENFOAM=1904
|
WM_VERSION = OPENFOAM=1906
|
||||||
|
|
||||||
AR = ar
|
AR = ar
|
||||||
ARFLAGS = cr
|
ARFLAGS = cr
|
||||||
|
|||||||
Reference in New Issue
Block a user