Skip to content

Commit

Permalink
Push to 0.1.1 with the fix for the fatal carbon error
Browse files Browse the repository at this point in the history
  • Loading branch information
bordoni committed Jun 17, 2014
1 parent c2c5ce6 commit 5f3dcc8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Plugin {
* @since 0.1.0
* @var string
*/
const version = '0.1.0';
const version = '0.1.1';

/**
* A static variable that holds a dinamic instance of the class
Expand Down
2 changes: 1 addition & 1 deletion fakerpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: FakerPress
* Plugin URI: https://github.com/iryz/fakerpress
* Description: FakerPress is a clean way to generate fake data to your WordPress instalation, great for developers who need testing
* Version: 0.1.0
* Version: 0.1.1
* Author: Iryz
* Author URI: http://iryz.org
* Text Domain: fakerpress
Expand Down
2 changes: 1 addition & 1 deletion inc/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
require_once Plugin::path( 'inc/vendor/Faker/src/autoload.php' );

// Include the Carbon class to deal with dates
require_once Plugin::path( 'inc/vendor/Carbon/src/Carbon/Carbon.php' );
require_once Plugin::path( 'inc/vendor/Carbon/Carbon.php' );

// Require our Administration Class
require_once Plugin::path( 'classes/filter.php' );
Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ Thank you for wanting to make FakerPress better for everyone! [We salute you](ht

## Changelog ##

### 0.1.1 ###
* Fatal Error gerated by a missing file Carbon related fixed

### 0.1.0 ###
* First initial concept of using [Faker](https://github.com/fzaninotto/Faker) to gerenate data on WordPress

Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,8 @@ Thank you for wanting to make FakerPress better for everyone! [We salute you](ht

== Changelog ==

= 0.1.1 =
* Fatal Error gerated by a missing file Carbon related fixed

= 0.1.0 =
* First initial concept of using [Faker](https://github.com/fzaninotto/Faker) to gerenate data on WordPress

0 comments on commit 5f3dcc8

Please sign in to comment.