Start 4.12 development

This commit is contained in:
Matthias Clasen 2023-03-14 08:21:35 -04:00
parent 7ed8c5b6c7
commit 93edb08094
4 changed files with 27 additions and 3 deletions

2
NEWS
View File

@ -1,4 +1,4 @@
Overview of Changes in 4.10.2, xx-xx-xxxx
Overview of Changes in 4.11.1, xx-xx-xxxx
=========================================
Overview of Changes in 4.10.1, 14-03-2023

View File

@ -128,6 +128,16 @@
*/
#define GDK_VERSION_4_10 (G_ENCODE_VERSION (4, 10))
/**
* GDK_VERSION_4_12:
*
* A macro that evaluates to the 4.12 version of GDK, in a format
* that can be used by the C pre-processor.
*
* Since: 4.12
*/
#define GDK_VERSION_4_12 (G_ENCODE_VERSION (4, 12))
/* evaluates to the current stable version; for development cycles,
* this means the next stable target, with a hard backstop to the
@ -297,4 +307,18 @@
# define GDK_DEPRECATED_IN_4_10_FOR(f) _GDK_EXTERN
#endif
#if GDK_VERSION_MAX_ALLOWED < GDK_VERSION_4_12
# define GDK_AVAILABLE_IN_4_12 GDK_UNAVAILABLE(4, 12)
#else
# define GDK_AVAILABLE_IN_4_12 _GDK_EXTERN
#endif
#if GDK_VERSION_MIN_REQUIRED >= GDK_VERSION_4_12
# define GDK_DEPRECATED_IN_4_12 GDK_DEPRECATED
# define GDK_DEPRECATED_IN_4_12_FOR(f) GDK_DEPRECATED_FOR(f)
#else
# define GDK_DEPRECATED_IN_4_12 _GDK_EXTERN
# define GDK_DEPRECATED_IN_4_12_FOR(f) _GDK_EXTERN
#endif
#endif /* __GDK_VERSION_MACROS_H__ */

View File

@ -1,5 +1,5 @@
project('gtk', 'c',
version: '4.10.2',
version: '4.11.1',
default_options: [
'buildtype=debugoptimized',
'warning_level=1',

View File

@ -1 +1 @@
invalid5.ui:3:1 Required GTK version 5.10, current version is 4.10
invalid5.ui:3:1 Required GTK version 5.10, current version is 4.11