summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Wilmet <swilmet@informatique-libre.be>2022-11-01 16:00:01 +0100
committerSébastien Wilmet <swilmet@informatique-libre.be>2022-11-01 16:00:00 +0100
commit385d0327aa18bfdb0145238ef8bdde3d6be0e1b6 (patch)
tree5df0cbf26f9953e1226168ebb35fd676467d114f
parentf3295f63ec4236127cac1957390ef301f8d6c0de (diff)
downloadgedit-43.0.tar.gz
Release 43.043.0
-rw-r--r--NEWS5
-rw-r--r--data/org.gnome.gedit.appdata.xml.in1
-rw-r--r--meson.build6
3 files changed, 7 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 45d27b7af..75d613889 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-News in 43.beta, xxxx-yy-zz (not yet released)
----------------------------
+News in 43.0, 2022-11-03
+------------------------
* Come back to the source code of gedit 40.0 and continue again from there.
It is based on the Tepl and Amtk libraries.
The single Open button is again split in two with a drop-down menu for recent
@@ -15,6 +15,7 @@ News in 43.beta, xxxx-yy-zz (not yet released)
* File browser plugin: more robust check if Nautilus GSettings can be used, even
if the key doesn't exist anymore.
* Rework the I/O error info bars.
+* Handle application/x-zerosize mimetype.
* Small code maintenance.
* Documentation updates.
* Translation updates.
diff --git a/data/org.gnome.gedit.appdata.xml.in b/data/org.gnome.gedit.appdata.xml.in
index 126da6a22..276ffc44b 100644
--- a/data/org.gnome.gedit.appdata.xml.in
+++ b/data/org.gnome.gedit.appdata.xml.in
@@ -33,6 +33,7 @@
<translation type="gettext">gedit</translation>
<content_rating type="oars-1.1" />
<releases>
+ <release version="43.0" date="2022-11-03" />
<release version="43.alpha" date="2022-07-06" />
<release version="42.1" date="2022-05-27" />
<release version="42.0" date="2022-04-01" />
diff --git a/meson.build b/meson.build
index fca16772d..7fb1a5e0b 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'gedit', 'c',
- version: '43.alpha2',
+ version: '43.0',
meson_version: '>= 0.53'
)
@@ -45,8 +45,8 @@ gio_dep = dependency('gio-2.0', version: '>= 2.70')
libgedit_public_deps = [
gio_dep,
dependency('gtk+-3.0', version: '>= 3.22'),
- dependency('amtk-5', version: '>= 5.5.2'),
- dependency('tepl-6', version: '>= 6.1.2'),
+ dependency('amtk-5', version: '>= 5.6'),
+ dependency('tepl-6', version: '>= 6.2'),
dependency('libpeas-gtk-1.0'),
]