diff --git a/CHANGELOG.md b/CHANGELOG.md
index b968eba8..f2db3fba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [7.0.2] - 2024-07-04
+
+### Fixed
+
+* fix(FileListener): Various fixes
+* fix(Classifier): fix unexpected false return value
+* fix(ViewAdmin): Add title prop to text fields
+
## [7.0.2-beta.2] - 2024-06-24
### Fixed
diff --git a/Makefile b/Makefile
index dddd7c4c..682ddae2 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
-version+=7.0.2-beta.2
+version+=7.0.2
all: dev-setup build-js-production
diff --git a/appinfo/info.xml b/appinfo/info.xml
index d8bfd299..0cfe2d2a 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -76,7 +76,7 @@ Requirements:
The app does not send any sensitive data to cloud providers or similar services. All processing is done on your Nextcloud machine, using Tensorflow.js running in Node.js.
]]>
- 7.0.2-beta.2
+ 7.0.2
agpl
Marcel Klehr
diff --git a/package.json b/package.json
index abab118f..7eee917a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "recognize",
- "version": "7.0.2-beta.2",
+ "version": "7.0.2",
"description": "Image recognition in nextcloud",
"main": "src/classifier_imagenet.js",
"directories": {