Skip to content

Commit dbadb2d

Browse files
committed
Merge branch 'release/0.7.2'
2 parents 4f249ef + 2724902 commit dbadb2d

7 files changed

Lines changed: 9 additions & 15 deletions

File tree

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.version.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"major":0,"minor":7,"patch":2,"build":0}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface IFilter
3939
* Version
4040

4141
The Version data object is designed to work with the [Bump](https://github.com/ljonesfl/bump)
42-
command line utility to reference version information from version.json
42+
command line utility to reference version information from .version.json
4343

4444
## String
4545

VERSIONLOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.2
2+
3+
## 0.7.2
4+
15
## 0.7.1 2025-02-06
26

37
## 0.7.0 2025-01-27

src/Data/Object/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function loadFromString( string $Data ): void
5555
* @throws \Exception
5656
*/
5757

58-
public function loadFromFile( string $File = 'version.json' ): void
58+
public function loadFromFile( string $File = '.version.json' ): void
5959
{
6060
if( !file_exists( $File ) )
6161
{

tests/Data/Parser/PositionalTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ public function testPass()
88
{
99
$Parser = new Parser\Positional();
1010

11-
1211
$aRet = $Parser->parse( "text1,text2,text3,text4",
1312
[
1413
[
1514
'name' => 'col2',
1615
'start' => 6,
1716
'length' => 5
1817
]
19-
]);
18+
]
19+
);
2020

2121
$this->assertEquals( 'text2', $aRet[ 'col2' ] );
2222
}

version.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)