mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Merge branch 'master' into fever
This commit is contained in:
commit
bf3bf9589f
3 changed files with 14 additions and 1 deletions
12
CHANGELOG
12
CHANGELOG
|
@ -1,3 +1,15 @@
|
|||
Version 0.7.1 (2019-03-25)
|
||||
==========================
|
||||
|
||||
Bug fixes:
|
||||
- Correctly initialize new on-disk SQLite databases
|
||||
- Retry queries on schema changes with PDO SQLite
|
||||
- Correctly read author name from database in Tiny Tiny RSS
|
||||
- Update internal version number to correct version
|
||||
|
||||
Changes:
|
||||
- Improve performance of lesser-used database queries
|
||||
|
||||
Version 0.7.0 (2019-03-02)
|
||||
==========================
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||
namespace JKingWeb\Arsse;
|
||||
|
||||
class Arsse {
|
||||
const VERSION = "0.6.1";
|
||||
const VERSION = "0.7.1";
|
||||
|
||||
/** @var Lang */
|
||||
public static $lang;
|
||||
|
|
|
@ -1286,6 +1286,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
|
|||
"id",
|
||||
"guid",
|
||||
"title",
|
||||
"author",
|
||||
"url",
|
||||
"unread",
|
||||
"starred",
|
||||
|
|
Loading…
Reference in a new issue