From 1959407b74850f8e135c62b0c6652b6af342d62a Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Fri, 31 Mar 2017 20:11:39 +0300 Subject: [PATCH 1/7] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa883f612..c3374333e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG for 0.9.0 RC ====================== +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 From d6499dc4f8ff55d6569b7bf7058729c36fab2acf Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Sat, 1 Apr 2017 01:09:36 +0300 Subject: [PATCH 2/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fdf40acbe..b57744e4d 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), 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) From f7b81308228a3c5c2220bd9164ac04c2d2142436 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Sat, 1 Apr 2017 17:01:41 +0300 Subject: [PATCH 3/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b57744e4d..2791e5911 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), 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) From 2398446c5a3e4a9257b15f8cbdfb4f0232b54697 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Sun, 2 Apr 2017 02:14:43 +0300 Subject: [PATCH 4/7] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2791e5911..0ef47e9f2 100644 --- a/README.md +++ b/README.md @@ -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 From 5a16527df95df0c66f2ddd8345b0c2112c95cc55 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Thu, 6 Apr 2017 00:52:25 +0300 Subject: [PATCH 5/7] Update composer.json --- composer.json | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) 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" }, From c88bc58f358b703c5cb8b4c8ca2fd23326e3ed95 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Thu, 6 Apr 2017 12:53:58 +0300 Subject: [PATCH 6/7] Update Core.php --- source/Spiral/Core/Core.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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. From 8f15c5fd13c908c372a1733b079a5720fa5a2665 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Thu, 6 Apr 2017 12:54:29 +0300 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3374333e..3019ae514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ 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