Skip to content

Commit

Permalink
[imp] release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phproberto committed Aug 30, 2018
1 parent a406bf3 commit d683918
Show file tree
Hide file tree
Showing 30 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/joomla_entity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<authorUrl>www.phproberto.com</authorUrl>
<copyright>Copyright (C) 2017-2018 Roberto Segura López. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<version>1.3.0</version>
<version>1.4.0</version>
<description>Semantical API for Joomla!</description>
<updateservers>
<server type="extension" name="Joomla Entity Update Site">https://raw.githubusercontent.com/phproberto/joomla-entity/master/updates/joomla_entity.xml</server>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Category searcher.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class CategorySearcher extends DatabaseSearcher implements SearcherInterface
{
Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public function first()
*
* @return static
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
public static function fromData(array $data, $class)
{
Expand Down
4 changes: 2 additions & 2 deletions extensions/libraries/joomla_entity/src/Core/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ abstract class Column
* Default column used to store level.
*
* @const
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
const LEVEL = 'level';

Expand All @@ -85,7 +85,7 @@ abstract class Column
* Default column used to store parent identifier.
*
* @const
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
const PARENT = 'parent_id';

Expand Down
2 changes: 1 addition & 1 deletion extensions/libraries/joomla_entity/src/Core/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Represents and entry from the #__modules table.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class Module extends ComponentEntity
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with ancestors.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
trait HasAncestors
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with child entities.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
trait HasChildren
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with descendants.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
trait HasDescendants
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Trait for entities with a level column.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
trait HasLevel
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Trait for entities with a parent entity.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
trait HasParent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Base searcher.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
abstract class BaseSearcher
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Database finder.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
abstract class DatabaseSearcher extends BaseSearcher
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* Searcher interface.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
interface SearcherInterface
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Categories/CategorySearcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* Category searcher tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class CategorySearcherTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/ModuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Module tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class ModuleTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasAncestorsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* HasAncestors tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasAncestorsTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasChildrenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* HasChildren tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasChildrenTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasDescendantsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* HasDescendants tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasDescendantsTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasLevelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* HasLevel tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasLevelTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasLevelWithCustomColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* HasLevel tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasLevelWithCustomColumnTest extends HasLevelTest
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasParentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* HasParent tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasParentTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/HasParentWithCustomColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* HasParent with custom column tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class HasParentWithCustomColumnTest extends HasParentTest
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/Stubs/EntityWithAncestors.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Sample entity to test HasAncestors trait.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class EntityWithAncestors extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/Stubs/EntityWithChildren.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Sample entity to test HasChildren trait.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class EntityWithChildren extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/Stubs/EntityWithDescendants.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Sample entity to test HasDescendants trait.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class EntityWithDescendants extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/Stubs/EntityWithLevel.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Sample entity to test HasLevel trait.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class EntityWithLevel extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Core/Traits/Stubs/EntityWithParent.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Sample entity to test HasParent trait.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class EntityWithParent extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Searcher/BaseSearcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* Category searcher tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class BaseSearcherTest extends \TestCaseDatabase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/Searcher/Stubs/Searcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* Category searcher tests.
*
* @since __DEPLOY_VERSION__
* @since 1.4.0
*/
class Searcher extends BaseSearcher
{
Expand Down
6 changes: 3 additions & 3 deletions updates/joomla_entity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<description>Twig integration for Joomla!</description>
<element>joomla_entity</element>
<type>library</type>
<version>1.3.0</version>
<version>1.4.0</version>
<client>site</client>
<infourl title="Joomla Entity">https://github.com/phproberto/joomla-entity/releases/tag/v1.3.0</infourl>
<infourl title="Joomla Entity">https://github.com/phproberto/joomla-entity/releases/tag/v1.4.0</infourl>
<downloads>
<downloadurl type="full" format="zip">https://github.com/phproberto/joomla-entity/releases/download/v1.3.0/joomla-entity-v1.3.0.zip</downloadurl>
<downloadurl type="full" format="zip">https://github.com/phproberto/joomla-entity/releases/download/v1.4.0/joomla-entity-v1.4.0.zip</downloadurl>
</downloads>
<targetplatform name="joomla" version="3.[89]" />
</update>
Expand Down

0 comments on commit d683918

Please sign in to comment.