Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 2e33986

Browse files
committed
Changed version, added to the change log and readme.
1 parent 28daccb commit 2e33986

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==========
33

4+
### 07/14/2018 - 1.0.18
5+
* Fixed #17 for PHP 5.6
6+
* Replaced the spaceship operators with a php 5.6 alternative.
7+
* Removed the php 7 type hinting.
8+
* Added php >= 5.6 as the new requirement for install.
9+
410
### 07/06/2018 - 1.0.17
511
* Fixed #19 the `AND` query logic. (previously the `where()` query would only used the last one in the chain).
612

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Doesn't that sound awesome?
1010

1111
With Filebase, you are in complete control. Design your data structure the way you want. Use arrays and objects like you know how in PHP. Update and share your data with others and teams using version control. Just remember, upgrading your web/apache server is a lot less than your database server.
1212

13+
Works with **PHP 5.6** and **PHP 7+**
14+
1315
### Features
1416

1517
Filebase is simple by design, but has enough features for the more advanced.

src/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Database
1010
* Stores the version of Filebase
1111
* use $db->getVersion()
1212
*/
13-
const VERSION = '1.0.17';
13+
const VERSION = '1.0.18';
1414

1515

1616
//--------------------------------------------------------------------

0 commit comments

Comments
 (0)