Skip to content

Commit a4343d3

Browse files
committed
[Changelog] Add blank line between changelog files
1 parent 72018cb commit a4343d3

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

RoboFile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ protected function processChangelog()
418418
$changelogFiles = Finder::create()->name('CHANGELOG-*.md')->in('vendor/codeception/codeception')->depth(0)->sort($sortByVersionDesc);
419419
$changelog = "\n";
420420
foreach ($changelogFiles as $file) {
421-
$changelog .= $file->getContents();
421+
$changelog .= trim($file->getContents(), "\r\n") . "\n\n";
422422
}
423423
//user
424424
$changelog = preg_replace('~\s@([\w-]+)~', ' **[$1](https://github.com/$1)**', $changelog);

changelog.markdown

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ title: Codeception Changelog
2424
* **[Fixtures]** Cleanup by name **[soupli](https://github.com/soupli)**
2525
* GroupManager throws exception if path used in group configuration does not exist.
2626
* GroupManager supports absolute and backtracking (..) paths in group files.
27+
2728
#### 3.1.2
2829

2930
* **[Doctrine2]** Support non-entity doctrine **[id](https://github.com/id)** on the haveInRepository debug message by **[Basster](https://github.com/Basster)**
@@ -85,6 +86,7 @@ $result = $I->runSymfonyConsoleCommand('hello:world', '--verbose' => 3]);
8586
* Improved file path detection for groups [#5609](https://github.com/Codeception/Codeception/issues/5609) by **[adaniloff](https://github.com/adaniloff)**
8687
* Shortened error output of unexpected exit to one line by **[Slamdunk](https://github.com/Slamdunk)**
8788
* Fixed composer.json of codeception/base package
89+
8890
#### 3.0.3
8991
- **[Laravel5]** Add `make` and `makeMultiple` methods for generating model instance by **[ibpavlov](https://github.com/ibpavlov)**
9092
- **[Lumen]** Add `make` and `makeMultiple` methods for generating model instance by **[ibpavlov](https://github.com/ibpavlov)**
@@ -147,6 +149,7 @@ $result = $I->runSymfonyConsoleCommand('hello:world', '--verbose' => 3]);
147149
* Recorder Extension: Added timestamp information with `include_microseconds` config option. By **[OneEyedSpaceFish](https://github.com/OneEyedSpaceFish)**.
148150
* **[REST]** Fixed sending request with duplicated slash with endpoint + URL. By **[nicholascus](https://github.com/nicholascus)**
149151
* **[Db]** Remove generateWhereClause method from SqlSrv to be compatible with other drivers. By **[Naktibalda](https://github.com/Naktibalda)**
152+
150153
#### 2.5.6
151154

152155
* **[WebDriver]** Fixed `loadSessionSnapshot` with php-webdriver 1.1.3 by **[Naktibalda](https://github.com/Naktibalda)**.
@@ -257,6 +260,7 @@ $result = $I->runSymfonyConsoleCommand('hello:world', '--verbose' => 3]);
257260
* Added ext-curl to the composer require section by **[siad007](https://github.com/siad007)**
258261
* Make `coverage: show_only_summary` configurable. See [#5142](https://github.com/Codeception/Codeception/issues/5142) by **[Quexer69](https://github.com/Quexer69)**
259262
* Ensure php extension `mbstring` is available by **[siad007](https://github.com/siad007)**. Fixes [#4575](https://github.com/Codeception/Codeception/issues/4575)
263+
260264
#### 2.4.5
261265

262266
* Fixed PHPUnit 7.2 compatibility.
@@ -558,7 +562,6 @@ codecept run --ext DotReporter
558562
* Configuration changes: `actor` replaced with `actor_suffix` in global config
559563
* Configuration changes: `class_name` replaced with `actor` in suite config
560564
561-
562565
#### 2.2.12
563566
564567
* Don't skip other tests after a failed test [#4226](https://github.com/Codeception/Codeception/issues/4226) by **[Naktibalda](https://github.com/Naktibalda)**
@@ -955,6 +958,7 @@ extensions:
955958
* **[Sequence]** Changed the prefix value. Generated sequences to include id inside a prefix: `sq('user1') => 'user1_876asd8as87a'. Added `prefix` config option.
956959
* Deprecation errors won't fail tests but will be printed.
957960
* Official [Docker image](https://hub.docker.com/r/codeception/codeception/) introduced by **[schmunk42](https://github.com/schmunk42)**
961+
958962
#### 2.1.11
959963

960964
* **[Yii1]** Improved Yii connector. AR metadata is cleaned up between requests. `regenerateId` of session is disabled.
@@ -1210,7 +1214,9 @@ extensions:
12101214
* Official extensions moved to `ext` dir; Base Extension class renamed to `Codeception\Extension`
12111215
* Duplicate environment options won't cause Codeception to run environment tests twice
12121216
* **[Phalcon1]** `haveServiceInDi` method implemented by **[sergeyklay](https://github.com/sergeyklay)**
1213-
* **[Db]** `seeNumRecords` method added by **[sergeyklay](https://github.com/sergeyklay)**#### 2.0.15
1217+
* **[Db]** `seeNumRecords` method added by **[sergeyklay](https://github.com/sergeyklay)**
1218+
1219+
#### 2.0.15
12141220

12151221
* **[Phalcon1]** Fixed getting has more than one field by **[sergeyklay](https://github.com/sergeyklay)** [#2010](https://github.com/Codeception/Codeception/issues/2010).
12161222
* [PhpBrowser][Frameworks] Compute relative URIs against the effective request URI when there is a redirect. [#2058](https://github.com/Codeception/Codeception/issues/2058) [#2057](https://github.com/Codeception/Codeception/issues/2057)
@@ -1557,3 +1563,4 @@ settings:
15571563
* webdriver upgraded to 0.4
15581564
* upgraded to PHPUnit 4
15591565
1566+

0 commit comments

Comments
 (0)