diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff793c91..a6278c25 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,21 @@ 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).
+## 1.12.0 - 2022-04-14
+### New
+ - Implement GeoClassifier
+ - Add newly trained musicnn model
+ - Admin settings: Add system check for WASM mode
+ - InstallDeps: Add check for AVX
+ - FileFinderService: Add more debug output
+
+### Fixed
+ - InstallDeps: Don't enable WASM mode when installation failed
+ - CLI: Don't call the classifiers with *all* files in one go
+ - Fix encoding errors in tags
+ - Smarter way to detect cpu architecture
+ - Don't leak exec errors on installation
+
## 1.11.0 - 2022-02-09
### New
diff --git a/Makefile b/Makefile
index 6900e8a4..24d5e54e 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+=1.11.0
+version+=1.12.0
all: dev-setup build-js-production
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 32e867d6..90396d16 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -29,7 +29,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, which comes bundled with this app.
]]>
- 1.8.0
+ 1.12.0
agpl
Marcel Klehr
organization
diff --git a/package.json b/package.json
index b9106243..d0f01de3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "recognize",
- "version": "1.11.0",
+ "version": "1.12.0",
"description": "Image recognition in nextcloud",
"main": "src/classifier_imagenet.js",
"directories": {