diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-10-15 10:48:42 -0700 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-11-19 16:03:17 -0500 |
commit | e9336a0a28774395f43ebd9271f2efc332300084 (patch) | |
tree | afd9214946a437b18b9189f0cbd43e99952c7768 /pango/pango-version-macros.h | |
parent | 0d8b48284b8d90b19b3f9ffdd75335bece3c3818 (diff) | |
download | pango-e9336a0a28774395f43ebd9271f2efc332300084.tar.gz |
Bump version to 1.43
We're going to add new api, so add version markers etc.
Diffstat (limited to 'pango/pango-version-macros.h')
-rw-r--r-- | pango/pango-version-macros.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/pango/pango-version-macros.h b/pango/pango-version-macros.h index 5d66ab8c..8c61bb77 100644 --- a/pango/pango-version-macros.h +++ b/pango/pango-version-macros.h @@ -235,13 +235,23 @@ /** * PANGO_VERSION_1_42: * - * A macro that evaluates to the 2.38 version of Pango, in a format + * A macro that evaluates to the 1.42 version of Pango, in a format * that can be used by the C pre-processor. * * Since: 1.42 */ #define PANGO_VERSION_1_42 (G_ENCODE_VERSION (1, 42)) +/** + * PANGO_VERSION_1_44: + * + * A macro that evaluates to the 1.44 version of Pango, in a format + * that can be used by the C pre-processor. + * + * Since: 1.44 + */ +#define PANGO_VERSION_1_44 (G_ENCODE_VERSION (1, 44)) + /* evaluates to the current stable version; for development cycles, * this means the next stable target */ @@ -633,4 +643,18 @@ # define PANGO_AVAILABLE_IN_1_42 _PANGO_EXTERN #endif +#if PANGO_VERSION_MIN_REQUIRED >= PANGO_VERSION_1_44 +# define PANGO_DEPRECATED_IN_1_44 PANGO_DEPRECATED +# define PANGO_DEPRECATED_IN_1_44_FOR(f) PANGO_DEPRECATED_FOR(f) +#else +# define PANGO_DEPRECATED_IN_1_44 _PANGO_EXTERN +# define PANGO_DEPRECATED_IN_1_44_FOR(f) _PANGO_EXTERN +#endif + +#if PANGO_VERSION_MAX_ALLOWED < PANGO_VERSION_1_44 +# define PANGO_AVAILABLE_IN_1_44 PANGO_UNAVAILABLE(1, 44) +#else +# define PANGO_AVAILABLE_IN_1_44 _PANGO_EXTERN +#endif + #endif /* __PANGO_VERSION_H__ */ |