Versionbump: 2.83.16-release
[blender.git] / source / blender / blenkernel / BKE_blender_version.h
blobf9b1a01c86c0a73365bd377ddb5ff9f91731e762
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version 2
5 * of the License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software Foundation,
14 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 #ifndef __BKE_BLENDER_VERSION_H__
17 #define __BKE_BLENDER_VERSION_H__
19 /** \file
20 * \ingroup bke
23 /**
24 * The lines below use regex from scripts to extract their values,
25 * Keep this in mind when modifying this file and keep this comment above the defines.
27 * \note Use #STRINGIFY() rather than defining with quotes.
30 /* Blender major and minor version. */
31 #define BLENDER_VERSION 283
32 /* Blender patch version for bugfix releases. */
33 #define BLENDER_VERSION_PATCH 16
34 /** Blender release cycle stage: alpha/beta/rc/release. */
35 #define BLENDER_VERSION_CYCLE release
37 /* Blender file format version. */
38 #define BLENDER_FILE_VERSION BLENDER_VERSION
39 #define BLENDER_FILE_SUBVERSION 20
41 /* Minimum Blender version that supports reading file written with the current
42 * version. Older Blender versions will test this and show a warning if the file
43 * was written with too new a version. */
44 #define BLENDER_FILE_MIN_VERSION 280
45 #define BLENDER_FILE_MIN_SUBVERSION 0
47 /** User readable version string. */
48 const char *BKE_blender_version_string(void);
50 #endif /* __BKE_BLENDER_VERSION_H__ */