summaryrefslogtreecommitdiff
path: root/pango/pango-version-macros.h
Commit message (Collapse)AuthorAgeFilesLines
* pango/pango-version-macros.h: Mention correct version check macroGuido Günther2022-01-271-1/+1
| | | | | Pango names it PANGO_VERSION_CHECK not PANGO_CHECK_VERSION (like glib). Fix the one incorrect mention in the documentation comment.
* Add version macros for 1.52Matthias Clasen2022-01-101-0/+24
|
* Add version macros for 1.50Matthias Clasen2021-07-311-0/+24
|
* Revert "Merge branch 'fix-deadlocks' into 'master'"revert-1fedc11aMatthias Clasen2021-03-311-24/+0
| | | This reverts merge request !309
* Bump version to 1.49.0Matthias Clasen2021-03-301-0/+24
| | | | We are going to add new api.
* Add 1.48 version macrosMatthias Clasen2020-09-181-0/+24
|
* Fix the buildMatthias Clasen2019-10-311-1/+0
|
* Add 1.46 version macrosMatthias Clasen2019-10-311-0/+25
|
* Bump version to 1.43Matthias Clasen2018-11-191-1/+25
| | | | We're going to add new api, so add version markers etc.
* Correctly implement version macros for PangoEmmanuele Bassi2017-05-191-128/+135
| | | | | | | | | | | | | First of all, we need to define `PANGO_UNAVAILABLE`, as it's missing a definition, and the only reason why nobody caught this is because we're building without -Wundef, and clearly nobody attempted using min-required/max-allowed with Pango. Additionally, we really need a way to disable deprecation warnings from the compiler. The complete implementation of the version macros for GLib-based libraries includes both items above.
* pango/pango-version-macros.h: Update copyright noticeChun-wei Fan2016-08-221-3/+5
| | | | | | | Update the copyright notice of this file, to reflect things more accurately and to give more proper acknowledgement. Please see: https://bugzilla.gnome.org/show_bug.cgi?id=767587#c16
* Add a header for versioning macrosChun-wei Fan2016-06-291-0/+627
This header is used for: -Indicating what stable versions an API is introduced at and after 1.30.0. -Indicating what APIs are deprecated, and which stable release series they are deprecated if the deprecation is done after 1.30.0. This replaces the use of G_DEPRECATED* in Pango. -Use in a later commit to be used to export symbols directly via compiler directives instead of doing so over .def files, for compilers that do not support exporting via regex expressions.