aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 17:03:38 -0400
committerGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 17:03:38 -0400
commitbfa9a18a528fd6a4ca72e8ac51accfec56d8fe4d (patch)
tree9ad1b612185b86c534086bee3d8e4fa0f7585d98 /meson.build
parentUpdate README (diff)
downloadgtk3-classic-module-bfa9a18a528fd6a4ca72e8ac51accfec56d8fe4d.tar.gz
gtk3-classic-module-bfa9a18a528fd6a4ca72e8ac51accfec56d8fe4d.tar.bz2
gtk3-classic-module-bfa9a18a528fd6a4ca72e8ac51accfec56d8fe4d.zip
License changed to LGPL-2 to match GTK license
Thanks to @lah7 for pointing out this inconsistency!
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 7c41125..b1417d0 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project ('gtk3-classic-module', 'c',
- version : '0.89',
+ version : '0.89.1',
default_options : [
'buildtype=release',
'optimization=2',
@@ -7,7 +7,7 @@ project ('gtk3-classic-module', 'c',
'strip=true',
'warning_level=3'
],
- license: 'LGPLv3+')
+ license: 'LGPLv2')
gtk_version_required = '>= 3.24.0'
bgstack15