talkatu/talkatu

Prepare for the 0.2.0 release
v0.2.0
14 months ago, Gary Kramlich
288b931c8ca2
Parents d33e62d82322
Children 73684eeb9ed6
Prepare for the 0.2.0 release

Testing Done:
ran `ninja dist`

Reviewed at https://reviews.imfreedom.org/r/2266/
  • +15 -2
    ChangeLog
  • +1 -1
    meson.build
  • --- a/ChangeLog Thu Feb 23 21:19:59 2023 -0600
    +++ b/ChangeLog Thu Feb 23 21:36:58 2023 -0600
    @@ -1,5 +1,18 @@
    -0.1.1: ????/??/??
    - * Nothing yet, be the first!!
    +0.2.0: 2023/02/23
    + * Fix the release path in the scp command (RR 1700) (Gary Kramlich)
    + * Remove the packaging files (RR 1781) (Gary Kramlich)
    + * Add preprocessing attributes to GtkBuilder files (RR 1902) (Gary Kramlich)
    + * Fix deprecation warning with GLib 2.74 (RR 2013) (Elliott Sales de Andrade)
    + * Bump minimum Meson to 0.58 (RR 2029) (Elliott Sales de Andrade)
    + * Modernize and simplify Meson files (RR 2038) (Elliott Sales de Andrade)
    + * Fix URL targets in markdown buffers (RR 2190) (Elliott Sales de Andrade)
    + * Bump our C standard to C17 and set the global warning level to 2 (RR 2250)
    + (Gary Kramlich)
    + * Simplify the buffers by making everything work on a TalkatuBuffer (RR 2224)
    + (Gary Kramlich)
    + * Fixed most compiler warnings introduced by higher warning level (RR 2257)
    + (Markus Fischer)
    + * Fixed some compiler warnings in the demo window (RR 2265) (Gary Kramlich)
    0.1.0: 2022/08/29
    * Initial release
    --- a/meson.build Thu Feb 23 21:19:59 2023 -0600
    +++ b/meson.build Thu Feb 23 21:36:58 2023 -0600
    @@ -1,7 +1,7 @@
    ###############################################################################
    # Project Info
    ###############################################################################
    -project('talkatu', 'c', version : '0.2.0-dev',
    +project('talkatu', 'c', version : '0.2.0',
    license : 'GPL-2.0-or-later',
    meson_version : '>=0.58.0',
    default_options : ['c_std=c17', 'warning_level=2'])