diff --git a/CHANGELOG.md b/CHANGELOG.md index fa883f612..3019ae514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ CHANGELOG for 0.9.0 RC ====================== +1.0.0. (06.04.2017) +----- +- first public release, no BC changes + +0.9.14 (31.03.2017) +----- +- improvements in Translation indexations + 0.9.13 (31.03.2017) ----- - bugfix in Loader caused an exception with Swift::autoloader diff --git a/README.md b/README.md index fdf40acbe..0ef47e9f2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Spiral, PSR7/PHP7 Framework Spiral Framework -The Spiral framework provides open and modular Rapid Application Development (RAD) platform to create applications using DDD architecture, database tools, code re-usability, extremely friendly [IoC](https://github.com/container-interop/container-interop), PSR-7, simple syntax and customizable scaffolding mechanisms. +The Spiral framework provides open and modular Rapid Application Development (RAD) environment, database tools, code re-usability, extremely friendly [IoC](https://github.com/container-interop/container-interop), PSR-7, simple syntax and customizable scaffolding mechanisms. [Skeleton App](https://github.com/spiral-php/application) | [Guide](https://github.com/spiral-php/guide) | [Twitter](https://twitter.com/spiralphp) | [Modules](https://github.com/spiral-modules) | [CHANGELOG](/CHANGELOG.md) | [Contributing](https://github.com/spiral/guide/blob/master/contributing.md) | [Forum](https://groups.google.com/forum/#!forum/spiral-framework) @@ -139,12 +139,12 @@ class Post extends RecordEntity User::INVERSE => 'collaborated_posts' ], - //Relation thought interface + //Pre-compiled relations 'author' => [ self::BELONGS_TO => AuthorInterface::class, self::LATE_BINDING => true ], - + //Hybrid databases 'metadata' => [ Document::ONE => Mongo\Metadata::class diff --git a/composer.json b/composer.json index f595ae306..233e7c8b8 100644 --- a/composer.json +++ b/composer.json @@ -11,15 +11,13 @@ ], "require": { "php": ">=7.0", - "spiral/common": "^0.9", - "spiral/models": "^0.9", - "spiral/tokenizer": "^0.9", - "spiral/reactor": "^0.9", - "spiral/security": "^1.0.0", - "spiral/database": "^0.9", - "spiral/migrations": "^0.9", - "spiral/orm": "^0.9", - "spiral/stempler": "^0.9", + "spiral/common": "^1.0", + "spiral/reactor": "^1.0", + "spiral/security": "^1.0", + "spiral/database": "^1.0", + "spiral/migrations": "^1.0", + "spiral/orm": "^1.0", + "spiral/stempler": "^1.0", "zendframework/zend-diactoros": "^1.1", "twig/twig": "^2.1", "symfony/console": "^3.2", @@ -31,7 +29,7 @@ "vlucas/phpdotenv": "^2.1" }, "require-dev": { - "spiral/odm": "^0.9", + "spiral/odm": "^1.0", "phpunit/phpunit": "~5.0", "mockery/mockery": "^0.9.4" }, diff --git a/source/Spiral/Core/Core.php b/source/Spiral/Core/Core.php index bb8e7a1ee..fb50c82ba 100644 --- a/source/Spiral/Core/Core.php +++ b/source/Spiral/Core/Core.php @@ -31,11 +31,8 @@ abstract class Core extends AbstractCore implements DirectoriesInterface { use SharedTrait; - - /** - * I need this constant for Symfony Console. :/ - */ - const VERSION = '0.9.0-rc'; + + const VERSION = '1.0.0'; /** * Memory section for bootloaders cache.