Skip to content

Commit

Permalink
Release 3.25.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Oct 1, 2022
1 parent f4ab509 commit 4264267
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Overview of Changes in CTK+ 3.25.4
===================================

* ctk,Makefile: move 'ctkcolorsel' and 'ctkcolorseldialog' from 'ctk_private_h_sources' to 'ctk_public_h_sources'
* cdkwindow: don't make deprecated 'cdk_window_get_background_pattern', 'cdk_window_set_background_pattern'
* testsuit,ctk: Avoid 'g_log_set_writer_func' in tests
* avoid deprecated G_APPLICATION_FLAGS_NONE
* don't make deprecated 'cdk_cairo_create'
* Remove Google Cloud Print backend
* ci: remove libjson-glib-dev,librest-dev,libsoup2.4-dev
* ci: build without --enable-cloudprint
* ctkwidget: don't make deprecated 'ctk_widget_get_state', 'ctk_widget_set_state'
* ctkbutton: don't make deprecated 'ctk_button_released', 'ctk_button_pressed'


Overview of Changes in CTK+ 3.25.3
===================================

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

m4_define([ctk_major_version], [3])
m4_define([ctk_minor_version], [25])
m4_define([ctk_micro_version], [3])
m4_define([ctk_interface_age], [1])
m4_define([ctk_micro_version], [4])
m4_define([ctk_interface_age], [2])
m4_define([ctk_binary_age],
[m4_eval(100 * ctk_minor_version + ctk_micro_version)])
m4_define([ctk_version],
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('ctk+-3.0', 'c',
version: '3.25.3',
version: '3.25.4',
default_options: [
'buildtype=debugoptimized',
'warning_level=1'
Expand Down Expand Up @@ -52,7 +52,7 @@ ctk_version = meson.project_version()
ctk_major_version = ctk_version.split('.')[0].to_int()
ctk_minor_version = ctk_version.split('.')[1].to_int()
ctk_micro_version = ctk_version.split('.')[2].to_int()
ctk_interface_age = 1
ctk_interface_age = 2
add_project_arguments('-DCTK_VERSION="@0@"'.format(meson.project_version()), language: 'c')

add_project_arguments('-D_GNU_SOURCE', language: 'c')
Expand Down

0 comments on commit 4264267

Please sign in to comment.