Browse Source

Merge branch 'master' into fever

microsub
J. King 5 years ago
parent
commit
bf3bf9589f
  1. 12
      CHANGELOG
  2. 2
      lib/Arsse.php
  3. 1
      lib/REST/TinyTinyRSS/API.php

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)
==========================

2
lib/Arsse.php

@ -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;

1
lib/REST/TinyTinyRSS/API.php

@ -1286,6 +1286,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
"id",
"guid",
"title",
"author",
"url",
"unread",
"starred",

Loading…
Cancel
Save