Skip to content

Commit fd2299a

Browse files
committed
Merge branch 'release/0.6.6'
2 parents 0ab8c06 + 509058d commit fd2299a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

VERSIONLOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
-e ## 0.6.5
1+
## 0.6.6 2025-01-27
2+
* Updated to data 0.7
23

4+
## 0.6.5
35
## 0.6.4
4-
56
## 0.6.3
6-
77
## 0.6.2
88
* Updated interfaces.
99

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"php": "^8.0",
1414
"ext-curl": "*",
1515
"ext-json": "*",
16-
"neuron-php/data": "0.6.*"
16+
"neuron-php/data": "0.7.*"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "9.*",

tests/Patterns/Criteria/CriteriaTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testAndCriteria()
3030
$this->assertEquals( 1, count( $aResult ) );
3131

3232
$this->assertTrue(
33-
ArrayHelper::contains( $aResult, 'three', 'name' )
33+
ArrayHelper::contains( $aResult[ 0 ], 'three', 'name' )
3434
);
3535
}
3636

@@ -59,11 +59,11 @@ public function testOrCriteria()
5959
$this->assertEquals( 2, count( $aResult ) );
6060

6161
$this->assertTrue(
62-
ArrayHelper::contains( $aResult, 'three', 'name' )
62+
ArrayHelper::contains( $aResult[ 1 ], 'three', 'name' )
6363
);
6464

6565
$this->assertTrue(
66-
ArrayHelper::contains( $aResult, '1', 'type' )
66+
ArrayHelper::contains( $aResult[ 0 ], '1', 'type' )
6767
);
6868

6969
}
@@ -93,7 +93,7 @@ public function testNotCriteria()
9393
$this->assertEquals( 1, count( $aResult ) );
9494

9595
$this->assertTrue(
96-
ArrayHelper::contains( $aResult, 'one', 'name' )
96+
ArrayHelper::contains( $aResult[ 0 ], 'one', 'name' )
9797
);
9898

9999
$this->assertFalse(

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"major":0,"minor":6,"patch":5,"build":0}
1+
{"major":0,"minor":6,"patch":6,"build":0}

0 commit comments

Comments
 (0)