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 650c7bc commit 3b2f65cCopy full SHA for 3b2f65c
1 file changed
docs/release/README.md
@@ -25,22 +25,25 @@ If you need to release everything at once:
25
#### 1. Update all versions
26
27
```bash
28
-mvn versions:set -DnewVersion=1.0.0
+mvn versions:set "-DnewVersion=1.0.0"
29
mvn versions:commit
30
```
31
32
#### 2. Commit and tag
33
34
35
-git add . && git commit -m "Release version 1.0.0"
36
-git tag v1.0.0 && git push origin v1.0.0
+git add .
+git commit -m "Release version 1.0.0"
37
+git tag v1.0.0
38
+git push origin v1.0.0
39
40
41
#### 3. Bump to next SNAPSHOT
42
43
44
mvn versions:set -DnewVersion=1.0.1-SNAPSHOT
45
-git add . && git commit -m "Bump version to 1.0.1-SNAPSHOT"
46
47
+git commit -m "Bump version to 1.0.1-SNAPSHOT"
48
git push
49
0 commit comments