Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2022-09-20 00:30:23 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-09-20 00:30:23 +0300
commitd1dbcc3af665a0ed922292436b5f911d599f6116 (patch)
tree5d910d486089627438ad11cc12fd8904c6dc30f1
parent831fd2780fa9df691d6f9ea970bd5e77045754ee (diff)
release: 1.5.11.5.1
-rw-r--r--ChangeLog8
-rw-r--r--data/org.gajim.Gajim.appdata.xml.in1
-rw-r--r--flatpak/org.gajim.Gajim.yaml2
-rw-r--r--gajim/__init__.py2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3a3cfcbe1..7fd7cce65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
-Gajim 1.5.0 (18 Sep 2022)
+Gajim 1.5.1 (19 Sep 2022)
+
+ Bug Fixes
+
+ * ChatBanner: Format markup string correctly
+
+Gajim 1.5.0 (19 Sep 2022)
CVE-2022-39835
diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in
index 091c4f941..1bf1dc164 100644
--- a/data/org.gajim.Gajim.appdata.xml.in
+++ b/data/org.gajim.Gajim.appdata.xml.in
@@ -74,6 +74,7 @@
<control>pointing</control>
</recommends>
<releases>
+ <release version="1.5.1" date="2022-09-19" />
<release version="1.5.0" date="2022-09-19" />
<release version="1.4.7" date="2022-07-24" />
<release version="1.4.6" date="2022-07-07" />
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 2af164eba..4ba83c4ef 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -317,7 +317,7 @@ modules:
sources:
- type: git
url: https://dev.gajim.org/gajim/gajim.git
- tag: 1.5.0
+ tag: 1.5.1
- type: file
path: app-overrides.json
post-install:
diff --git a/gajim/__init__.py b/gajim/__init__.py
index 5fee10989..f9873011c 100644
--- a/gajim/__init__.py
+++ b/gajim/__init__.py
@@ -1,7 +1,7 @@
import sys
from pathlib import Path
-__version__ = '1.5.0'
+__version__ = '1.5.1'
IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()