gplugin/gplugin

Prepare for the 0.39.0 release
v0.39.0
18 months ago, Gary Kramlich
a0a98165f39c
Parents a3e3b812c1d2
Children 1abb531a18f4
Prepare for the 0.39.0 release

Testing Done:
Ran `ninja dist`

Reviewed at https://reviews.imfreedom.org/r/1981/
  • +44 -2
    ChangeLog
  • +1 -1
    meson.build
  • --- a/ChangeLog Thu Oct 27 21:15:45 2022 -0500
    +++ b/ChangeLog Thu Oct 27 21:38:54 2022 -0500
    @@ -1,5 +1,47 @@
    -0.38.2: ????/??/??:
    - * Nothing yet, be the first!!
    +0.39.0: 2022/10/27:
    + * Better document the example plugins and cover the shutdown parameter to
    + unload. (RR 1694) (Gary Kramlich)
    + * Add the missing shutdown parameter to the vala example. (RR 1701) (Gary
    + Kramlich)
    + * De-privatize GPluginManager. (RR 1744) (Elliott Sales de Andrade)
    + * Add a settings schema property to plugin info. (RR 1745) (Elliott Sales de
    + Andrade)
    + * Set the preset for i18n to glib. (RR 1766) (Gary Kramlich)
    + * Remove GTK3 support. (RR 1709, 1779) (Gary Kramlich)
    + * Implement GPluginSource. (RR 1778) (Gary Kramlich)
    + * Remove the packaging files. (RR 1780) (Gary Kramlich)
    + * Add signals for loader registration. (RR 1783) (Gary Kramlich)
    + * Clean up the manager's signals by using g_signal_new_class_handler and
    + using the correct types. (RR 1784) (Gary Kramlich)
    + * Remove Perl5 support. (RR 1793) (Gary Kramlich)
    + * Simplify UI files. (RR 1833) (Elliott Sales de Andrade)
    + * Install and notify plugin row widget's properties. (RR 1834) (Elliott Sales
    + de Andrade)
    + * Use expression lookups to populate plugin row widgets. (RR 1835) (Elliott
    + Sales de Andrade)
    + * Add more details to basic test plugin names. (RR 1837) (Elliott Sales de
    + Andrade)
    + * Move the existing refresh code to GPluginFileSource. (RR 1788) (Gary
    + Kramlich)
    + * Add a missing property doc and `Since` tags to the plugin row widget.
    + (RR 1841) (Elliott Sales de Andrade)
    + * Split the plugin details widget into a separate page. (RR 1840) (Elliott
    + Sales de Andrade)
    + * Update HACKING.OSX to detail how to get lgi to compile. (RR 1844) (Gary
    + Kramlich)
    + * Rename the strangely named load-on-query property to the much more obvious
    + auto-load. (RR 1094) (Gary Kramlich)
    + * Add some additional error checking to gplugin_native_loader_query. (RR
    + 1848) (Gary Kramlich)
    + * Add preprocessing for all of the resources that GResource can do
    + preprocessing on. (RR 1903) (Gary Kramlich)
    + * Clean up meson files including flattening them and using the dependency
    + object in summaries which shows the version as well. (RR 1943) (Elliott
    + Sales de Andrade)
    + * Remove the TCC loader. While this was nifty idea, the lack of ability to
    + specify additional CFLAGS/LIBS has kept it disabled by default so we
    + finally decided to throw in the towel. (RR 1910) (Gary Kramlich)
    + * Add support for Python 3.11. (RR 1980) (Gary Kramlich)
    0.38.1: 2022/08/29:
    * Move to g_queue_clear_full as we've required glib >= 2.60.0 for awhile.
    --- a/meson.build Thu Oct 27 21:15:45 2022 -0500
    +++ b/meson.build Thu Oct 27 21:38:54 2022 -0500
    @@ -3,7 +3,7 @@
    ###############################################################################
    project('gplugin', 'c',
    license : 'LGPL-2.0-or-later',
    - version : '0.38.2-dev',
    + version : '0.39.0',
    meson_version : '>=0.61.0',
    default_options : ['c_std=c99', 'warning_level=2'])