diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cc740bd3..ba34b2abc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+owncloud-news (3.403)
+* **Bugfix**: Use correct route for python updater
+
owncloud-news (3.402)
* **New dependency**: Bump required ownCloud version to 7.0.3 (RC1 is also supported)
* **Bugfix**: Use **News** as the app navigation entry name across all languages to fix translation errors and because it makes sense
diff --git a/appinfo/app.json b/appinfo/app.json
index a3d47891c..8d0368807 100644
--- a/appinfo/app.json
+++ b/appinfo/app.json
@@ -3,7 +3,7 @@
"id": "news",
"description": "An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory",
"licence": "AGPL",
- "version": "3.4.2",
+ "version": "3.4.3",
"authors": [
{
"name": "Bernhard Posselt",
diff --git a/appinfo/info.xml b/appinfo/info.xml
index a736bbe96..5fb7d175b 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,6 +5,6 @@
An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory
AGPL
Bernhard Posselt, Alessandro Cosentino, Jan-Christoph Borchardt
- 3.402
+ 3.403
7.0.3
diff --git a/appinfo/version b/appinfo/version
index 22e17e864..c92d30fed 100644
--- a/appinfo/version
+++ b/appinfo/version
@@ -1 +1 @@
-3.402
\ No newline at end of file
+3.403
\ No newline at end of file
diff --git a/bin/updater.py b/bin/updater.py
index a3da90866..7706bdef7 100755
--- a/bin/updater.py
+++ b/bin/updater.py
@@ -78,7 +78,7 @@ def __init__(self, base_url, thread_num, interval, user, password, timeout,
if self.base_url[-1] != '/':
self.base_url += '/'
- self.base_url += 'index.php/apps/news/api/v1-4'
+ self.base_url += 'index.php/apps/news/api/v1-2'
self.before_cleanup_url = '%s/cleanup/before-update' % self.base_url
self.after_cleanup_url = '%s/cleanup/after-update' % self.base_url
diff --git a/js/bower.json b/js/bower.json
index 40a442167..4187bbafb 100644
--- a/js/bower.json
+++ b/js/bower.json
@@ -1,6 +1,6 @@
{
"name": "ownCloud-news",
- "version": "3.4.2",
+ "version": "3.4.3",
"homepage": "https://github.com/owncloud/news",
"authors": [
"Bernhard Posselt "
diff --git a/js/package.json b/js/package.json
index e395871da..f69705625 100644
--- a/js/package.json
+++ b/js/package.json
@@ -1,6 +1,6 @@
{
"name": "ownCloud-news",
- "version": "3.4.2",
+ "version": "3.4.3",
"description": "An RSS/Atom feed reader",
"main": "build/app.js",
"scripts": {