Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2020-05-03 21:49:55 +0300
committerMarcel Klehr <mklehr@gmx.net>2020-05-03 21:49:55 +0300
commit06c915b01de18c90dbc262353bd509bf74c4dbf0 (patch)
treedc626e1b2ff917277d2bcd68337293e95685e27c
parentca8c690f8e2dd2ac1c2b92b33a663b51057e4e11 (diff)
v3.0.7v3.0.7
-rw-r--r--CHANGELOG.md6
-rw-r--r--Makefile2
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 820981b6..193b6155 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@ 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).
+## [3.0.7] - 2020-05-03
+
+## Changed
+ - Fix delete-all-bookmarks API endpoint
+
## [3.0.6] - 2020-05-03
## Changed
@@ -182,6 +187,7 @@ Supported are NC 15 and 16, provided you are using PHP v7.1 and have gmp, intl a
- FIX: Speed up findBookmarks SQL query
+[3.0.7]: https://github.com/nextcloud/bookmarks/compare/v3.0.6...v3.0.7
[3.0.6]: https://github.com/nextcloud/bookmarks/compare/v3.0.5...v3.0.6
[3.0.5]: https://github.com/nextcloud/bookmarks/compare/v3.0.4...v3.0.5
[3.0.4]: https://github.com/nextcloud/bookmarks/compare/v3.0.3...v3.0.4
diff --git a/Makefile b/Makefile
index 5bb6c047..3b7553e2 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+=3.0.6
+version+=3.0.7
all: dev-setup build-js-production test test-php
diff --git a/appinfo/info.xml b/appinfo/info.xml
index c5c14478..0d63a6a8 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@ Requirements:
- mbstring: *
- Nextcloud v17+
]]></description>
- <version>3.0.6</version>
+ <version>3.0.7</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
<author mail="mklehr@gmx.net">Marcel Klehr</author>
diff --git a/package.json b/package.json
index d6cedc81..8f9dd887 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "3.0.6",
+ "version": "3.0.7",
"main": "js/index.js",
"scripts": {
"dev": "webpack --config webpack.dev.js",