gplugin/gplugin

Prepare for the 0.42.0 release
v0.42.0
6 months ago, Gary Kramlich
0178488d90a3
Parents 80064de29bcd
Children 60d27495d38d
Prepare for the 0.42.0 release

Testing Done:
Ran `ninja dist`

Reviewed at https://reviews.imfreedom.org/r/2820/
  • +33 -2
    ChangeLog
  • +1 -1
    meson.build
  • --- a/ChangeLog Wed Nov 15 16:04:50 2023 -0600
    +++ b/ChangeLog Thu Nov 16 03:46:44 2023 -0600
    @@ -1,5 +1,36 @@
    -0.42.0: ????/??/??
    - * Nothing yet, be the first!
    +0.42.0: 2023/11/16
    + * Worked around the silly version compare warning (RR 2509) (Gary Kramlich)
    + * Removed Python 3.7 support (RR 2525) (Gary Kramlich)
    + * Depend on GTK 4.10 and GLib 2.76 (RR 2528) (Gary Kramlich)
    + * Fixed a typo in the native plugin documenation (RR 2612) (Gary Kramlich)
    + * Add GModule to GPlugin as an internal dependency (RR 2642) (Elliott Sales
    + de Andrade)
    + * Add runtime dependencies to tests (RR 2662) (Elliott Sales de Andrade)
    + * Replace fedora-36-amd64 convey plan with fedora-38-amd64 (RR 2663) (Elliott
    + Sales de Andrade)
    + * Fix test dependencies on Windows (RR 2664) (Elliott Sales de Andrade)
    + * Fix loader-registration build on Windows (RR 2666) (Elliott Sales de
    + Andrade)
    + * Update all of the Debian and Ubuntu convey plans (RR 2667) (Gary Kramlich)
    + * Add version macros and tag all API (RR 1352) (Gary Kramlich)
    + * Add visibility information to exported API (RR 2665) (Elliott Sales de
    + Andrade)
    + * Move GPluginSource to public API (RR 2668) (Elliott Sales de Andrade)
    + * Fix undefined macro warning (RR 2673) (Elliott Sales de Andrade)
    + * Give GPluginGtk its own versioning macros (GPLUGIN-147) (RR 2778) (Gary
    + Kramlich)
    + * Set symbol visibilty to hidden by default (RR 2781) (Elliott Sales de
    + Andrade)
    + * Use g_error_set_literal more often (RR 2782) (Elliott Sales de Andrade)
    + * Ensure Lua state is closed on error (RR 2783) (Elliott Sales de Andrade)
    + * Stop using G_MODULE_SUFFIX (RR 2784) (Gary Kramlich)
    + * Use G_OPTION_ENTRY_NULL to fix a clang warning (RR 2786) (Gary Kramlich)
    + * Add a clang convey plan (RR 2789) (Gary Kramlich)
    + * Add a fedora-39-amd64 convey plan (RR 2793) (Gary Kramlich)
    + * Use libraries for pkgconfig generation (RR 2805) (Elliott Sales de Andrade)
    + * Remove unused Meson variables (RR 2808) (Elliott Sales de Andrade)
    + * Add build check for Python 3.12 (RR 2818) (Elliott Sales de Andrade)
    + * Use windows subsystem for GTK viewer (RR 2819) (Elliott Sales de Andrade)
    0.41.0: 2023/06/22
    * Fix a leak in settings list (RR 2305) (Elliott Sales de Andrade)
    --- a/meson.build Wed Nov 15 16:04:50 2023 -0600
    +++ b/meson.build Thu Nov 16 03:46:44 2023 -0600
    @@ -3,7 +3,7 @@
    ###############################################################################
    project('gplugin', 'c',
    license : 'LGPL-2.0-or-later',
    - version : '0.42.0-dev',
    + version : '0.42.0',
    meson_version : '>=0.61.0',
    default_options : ['c_std=c17', 'warning_level=2'])