aboutsummaryrefslogtreecommitdiff
path: root/src/release.cpp
blob: 8a5eb2249f00e4dca23a56d211f87c65858e0f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* <<< Release Notice for library >>> */

#include "proj.h"
#include "proj_internal.h"

#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)

char const pj_release[] =
    "Rel. "
    STR(PROJ_VERSION_MAJOR)"."
    STR(PROJ_VERSION_MINOR)"."
    STR(PROJ_VERSION_PATCH)", "
    "November 1st, 2021";

const char *pj_get_release() {
    return pj_release;
}