From 51386bfe377fe6d48833b5c3dfad935bf89476e4 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 19 Sep 2016 19:42:59 -0400 Subject: [PATCH] xmpp: Bump module version number This will allow existing installs to be updated for jsxc. --- CHANGELOG.md | 2 ++ plinth/modules/xmpp/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 665a86c86..88ea65a03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,8 @@ All notable changes to this project will be documented in this file. - Tune log message verbosity. - Plinth no longer runs as root user. Fix all applications that were requiring root permission. +- xmpp: Replace jwchat with jsxc. Bump module version number so + current installs can be updated. ### Removed - Remove width management for forms. diff --git a/plinth/modules/xmpp/__init__.py b/plinth/modules/xmpp/__init__.py index b796e415b..d02164f23 100644 --- a/plinth/modules/xmpp/__init__.py +++ b/plinth/modules/xmpp/__init__.py @@ -33,7 +33,7 @@ from plinth.signals import pre_hostname_change, post_hostname_change from plinth.signals import domainname_change -version = 1 +version = 2 depends = ['apps']