diff --git a/CHANGELOG.md b/CHANGELOG.md index b777405..a1a8cbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ September 18, 2019 +- release 1.0.0 version - release 0.2.0 version - New method for build a PDO instances, orm::buildPDO($config, $connectGlobal); diff --git a/README.md b/README.md index 4312273..7f5c3ae 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Div PHP Object Relational Mapping 0.2.0 +# Div PHP Object Relational Mapping 1.0.0 This class allow to you make a mapping between your database objects and your PHP objects. diff --git a/composer.json b/composer.json index 8301d62..d3a31d7 100644 --- a/composer.json +++ b/composer.json @@ -6,11 +6,11 @@ "ORM", "DAO", "ADO", - "ActiveRecord", + "Active Record", "DAL" ], "homepage": "https://divengine.com/orm", - "version": "0.2.0", + "version": "1.0.0", "require": { "php": ">=7.1.0", "ext-json": "*", diff --git a/src/orm.php b/src/orm.php index 1c47952..4e5185b 100644 --- a/src/orm.php +++ b/src/orm.php @@ -19,7 +19,7 @@ * * @package divengine/orm * @author Rafa Rodriguez @rafageist [https://rafageist.github.io] - * @version 0.1.0 + * @version 1.0.0 * * @link https://divengine.com/orm * @link https://github.com/divengine/orm @@ -70,7 +70,7 @@ class orm * * @var string */ - private static $__version = '0.1.0'; + private static $__version = '1.0.0'; /** @var PDO Global PDO connection for all instances of ORM or their children */ private static $__pdo_global;