Skip to content

Commit

Permalink
Merge pull request #10 from fire015/v1.5
Browse files Browse the repository at this point in the history
V1.5
  • Loading branch information
fire015 committed May 29, 2014
2 parents 9a3d8b9 + 7fc3060 commit 06b373e
Show file tree
Hide file tree
Showing 7 changed files with 286 additions and 255 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
language: php

php:
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm

before_script:
- composer install
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Change Log
==========
### 29/05/2014 - 1.5
* Reduced some internal complexity
* Fixed gzip compression
* Unit tests now running against all options
* Removed `setOptions` method, must be passed into the `load` method

### 11/03/2014 - 1.4
* Now using Composer
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The easiest way to install Flintstone is via [composer](http://getcomposer.org/)
```json
{
"require": {
"fire015/flintstone": "*"
"fire015/flintstone": "1.*"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions src/Flintstone/Flintstone.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Flintstone {
* @access public
* @var string
*/
const VERSION = '1.4';
const VERSION = '1.5';

/**
* Static instance
Expand All @@ -36,7 +36,7 @@ public static function load($database, $options = array()) {

return self::$instance[$database];
}

/**
* Unload a database
* @param string $database the database name
Expand Down
Loading

0 comments on commit 06b373e

Please sign in to comment.