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

Commit

Permalink
Changed version, added to the change log and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymarois committed Jul 14, 2018
1 parent 28daccb commit 2e33986
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

### 07/14/2018 - 1.0.18
* Fixed #17 for PHP 5.6
* Replaced the spaceship operators with a php 5.6 alternative.
* Removed the php 7 type hinting.
* Added php >= 5.6 as the new requirement for install.

### 07/06/2018 - 1.0.17
* Fixed #19 the `AND` query logic. (previously the `where()` query would only used the last one in the chain).

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Doesn't that sound awesome?

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.

Works with **PHP 5.6** and **PHP 7+**

### Features

Filebase is simple by design, but has enough features for the more advanced.
Expand Down
2 changes: 1 addition & 1 deletion src/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Database
* Stores the version of Filebase
* use $db->getVersion()
*/
const VERSION = '1.0.17';
const VERSION = '1.0.18';


//--------------------------------------------------------------------
Expand Down

0 comments on commit 2e33986

Please sign in to comment.