diff --git a/NEWS.md b/NEWS.md index 8bbe947cc1..45196f26c5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -23,6 +23,7 @@ - Fix errors in Firefox’s private browsing mode. - Fix exporting OPML when there are tags that look like numbers ([#1439](https://github.com/fossar/selfoss/pull/1439)) - Fix incorrect handling of tags in MySQL backend, which could result in OPML export being broken ([#1439](https://github.com/fossar/selfoss/pull/1439)) +- Fix sharing to Wallabag 2. ([#1465](https://github.com/fossar/selfoss/pull/1465)) ### Customization changes - Custom spouts must explicitly pass `null` to `Item::__construct()` when they do not need the `extraData` argument. ([#1415](https://github.com/fossar/selfoss/pull/1415)) diff --git a/docs/api-description.json b/docs/api-description.json index 101e9fbe82..bdee2978b9 100644 --- a/docs/api-description.json +++ b/docs/api-description.json @@ -3,7 +3,7 @@ "servers": [], "info": { "description": "You can access selfoss by using the same backend as selfoss user interface: The RESTful HTTP JSON API. There are a few urls where you can get information from selfoss and some for updating data. Assume you want all tags for rendering this in your own app. You have to make an HTTP GET call on the url /tags:\n\n```\nGET http://yourselfossurl.com/tags\n```\nThe result is following JSON formatted response (in this example two tags “blog” and “deviantart” are available:\n\n```\n[{\"tag\":\"blog\",\"color\":\"#251f10\",\"unread\":\"1\"},\n{\"tag\":\"deviantart\",\"color\":\"#e78e5c\",\"unread\":\"0\"}]\n```\n\nFollowing docs shows you which calls are possible and which response you can expect.", - "version": "6.1.0", + "version": "7.0.0", "title": "selfoss" }, "tags": [ diff --git a/src/constants.php b/src/constants.php index a811180f0e..2d838423ba 100644 --- a/src/constants.php +++ b/src/constants.php @@ -9,4 +9,4 @@ // independent of selfoss version // needs to be bumped each time public API is changed (follows semver) // keep in sync with docs/api-description.json -const SELFOSS_API_VERSION = '6.1.0'; +const SELFOSS_API_VERSION = '7.0.0'; diff --git a/src/helpers/Configuration.php b/src/helpers/Configuration.php index 34091bfed8..38da68716c 100644 --- a/src/helpers/Configuration.php +++ b/src/helpers/Configuration.php @@ -124,7 +124,7 @@ class Configuration { public string $wallabag = ''; - public string $wallabagVersion = '2'; + public int $wallabagVersion = 2; public ?string $wordpress = null;