Skip to content

Commit 13ec68c

Browse files
andreaswolfsabbelasichon
authored andcommitted
Add release howto
1 parent 0c84efe commit 13ec68c

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

docs/release.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Fractor release howto
2+
3+
We use [https://github.com/symplify/monorepo-builder](symplify/monorepo-builder) for releasing new versions.
4+
5+
## How to release a new version
6+
7+
To release version 0.1.0, run this
8+
9+
vendor/bin/monorepo-builder release v0.1
10+
11+
To release 0.1.1, run
12+
13+
vendor/bin/monorepo-builder release v0.1.1
14+
15+
These commands can be tested by appending `--dry-run`

e2e/typo3-flexform/fractor.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?php
22

3+
declare(strict_types=1);
34

45
use a9f\Fractor\Configuration\FractorConfiguration;
56
use a9f\Typo3Fractor\Set\Typo3LevelSetList;
67

78
return FractorConfiguration::configure()
89
->withPaths([__DIR__ . '/output/'])
9-
->withSets([
10-
Typo3LevelSetList::UP_TO_TYPO3_13
11-
]);
10+
->withSets([Typo3LevelSetList::UP_TO_TYPO3_13]);

ecs.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
declare(strict_types=1);
44

55
return (include __DIR__ . '/.build/ecs.php')
6-
->withPaths([
7-
__DIR__ . '/e2e',
8-
])
6+
->withPaths([__DIR__ . '/e2e'])
97
->withRootFiles()
108
;

0 commit comments

Comments
 (0)