We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b76bd commit 33006c5Copy full SHA for 33006c5
RoboFile.php
@@ -7,11 +7,6 @@ public function release()
7
$this->test();
8
9
$version = file_get_contents('VERSION');
10
- // ask for changes in this release
11
- $changelog = $this->taskChangelog()
12
- ->version($version)
13
- ->askForChanges()
14
- ->run();
15
16
// adding changelog and pushing it
17
$this->taskGit()
@@ -27,6 +22,14 @@ public function release()
27
22
->run();
28
23
}
29
24
25
+ public function changed($description)
26
+ {
+ $this->taskChangelog()
+ ->version(file_get_contents('VERSION'))
+ ->change($description)
30
+ ->run();
31
+ }
32
+
33
34
public function test()
35
{
0 commit comments