diff --git a/CHANGELOG.md b/CHANGELOG.md index dac2ffaa..bd2a719b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ 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). +## [12.0.0] - 2022-12-13 +### Breaking changes + - Drop support for nc < v25 + - Remove projects support + +### New + - Implement sorting by URL + - Fix archived files UX + - Fix bookmarkslist getting emptied when folderoverview is hidden/shown + - Make search available on public links + - Upgrade to new NC25 design + +### Fixed + - Remove ExtractFromNotesJob + - Fix WorkflowEngine integration + - ItemSkeleton: Fix background color on dark theme + - Update readability.php + - More translations + ## [11.0.4] - 2022-10-10 ### Fixed diff --git a/Makefile b/Makefile index fd973e77..9bc8e806 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+=11.0.4 +version+=12.0.0 all: dev-setup build-js-production composer-no-dev diff --git a/appinfo/info.xml b/appinfo/info.xml index bac6dc8f..1353caca 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -23,7 +23,7 @@ Requirements: - mbstring: * - when using MySQL, use at least v8.0 ]]> - 11.0.4 + 12.0.0 agpl Marcel Klehr Arthur Schiwon diff --git a/package.json b/package.json index c941a855..f1b5cb45 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bookmarks", - "version": "11.0.4", + "version": "12.0.0", "main": "js/index.js", "scripts": { "build": "NODE_ENV=production webpack --progress --config webpack.js",