Blame src/patchlevel.h

Packit fd8b60
/* patchlevel.h */
Packit fd8b60
/*
Packit fd8b60
 * Copyright (C) 2004-2006 by the Massachusetts Institute of Technology.
Packit fd8b60
 * All rights reserved.
Packit fd8b60
 *
Packit fd8b60
 * Export of this software from the United States of America may
Packit fd8b60
 *   require a specific license from the United States Government.
Packit fd8b60
 *   It is the responsibility of any person or organization contemplating
Packit fd8b60
 *   export to obtain such a license before exporting.
Packit fd8b60
 *
Packit fd8b60
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
Packit fd8b60
 * distribute this software and its documentation for any purpose and
Packit fd8b60
 * without fee is hereby granted, provided that the above copyright
Packit fd8b60
 * notice appear in all copies and that both that copyright notice and
Packit fd8b60
 * this permission notice appear in supporting documentation, and that
Packit fd8b60
 * the name of M.I.T. not be used in advertising or publicity pertaining
Packit fd8b60
 * to distribution of the software without specific, written prior
Packit fd8b60
 * permission.  Furthermore if you modify this software you must label
Packit fd8b60
 * your software as modified software and not distribute it in such a
Packit fd8b60
 * fashion that it might be confused with the original M.I.T. software.
Packit fd8b60
 * M.I.T. makes no representations about the suitability of
Packit fd8b60
 * this software for any purpose.  It is provided "as is" without express
Packit fd8b60
 * or implied warranty.
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
/*
Packit fd8b60
 * This is the master file for version stamping purposes.  The
Packit fd8b60
 * checked-in version will contain the correct version information at
Packit fd8b60
 * all times.  Prior to an official release x.y.z,
Packit fd8b60
 * KRB5_MAJOR_RELEASE=x, KRB5_MINOR_RELEASE=y, and KRB5_PATCHLEVEL=z.
Packit fd8b60
 * KRB5_RELTAIL will reflect the release state.  It will be
Packit fd8b60
 * "prerelease" for unreleased code either on the trunk or on a
Packit fd8b60
 * release branch.  It will be undefined for a final release.
Packit fd8b60
 *
Packit fd8b60
 * Immediately following a final release, the release version numbers
Packit fd8b60
 * will be incremented, and KRB5_RELTAIL will revert to "prerelease".
Packit fd8b60
 *
Packit fd8b60
 * KRB5_RELTAG contains the CVS tag name corresponding to the release.
Packit fd8b60
 * KRB5_RELDATE identifies the date of the release.  They should
Packit fd8b60
 * normally be undefined for checked-in code.
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
/*
Packit fd8b60
 * ==========
Packit fd8b60
 * IMPORTANT:
Packit fd8b60
 * ==========
Packit fd8b60
 *
Packit fd8b60
 * If you are a vendor supplying modified code derived from MIT
Packit fd8b60
 * Kerberos, you SHOULD update KRB5_RELTAIL to identify your
Packit fd8b60
 * organization.
Packit fd8b60
 */
Packit fd8b60
#define KRB5_MAJOR_RELEASE 1
Packit fd8b60
#define KRB5_MINOR_RELEASE 18
Packit fd8b60
#define KRB5_PATCHLEVEL 2
Packit fd8b60
/* #undef KRB5_RELTAIL */
Packit fd8b60
#define KRB5_RELDATE "20200521"
Packit fd8b60
#define KRB5_RELTAG "krb5-1.18.2-final"