This repository was archived by the owner on Feb 5, 2018. It is now read-only.
File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ # manual-releases
2
+
3
+ This project has an automated release set up. So things are only released when there are
4
+ useful changes in the code that justify a release. But sometimes things get messed up one way or another
5
+ and we need to trigger the release ourselves. When this happens, simply bump the number below and commit
6
+ that with the following commit message based on your needs:
7
+
8
+ ** Major**
9
+
10
+ ```
11
+ fix(release): manually release a major version
12
+
13
+ There was an issue with a major release, so this manual-releases.md
14
+ change is to release a new major version.
15
+
16
+ Reference: #<the number of a relevant pull request, issue, or commit>
17
+
18
+ BREAKING CHANGE: <mention any relevant breaking changes (this is what triggers the major version change so don't skip this!)>
19
+ ```
20
+
21
+ ** Minor**
22
+
23
+ ```
24
+ feat(release): manually release a minor version
25
+
26
+ There was an issue with a minor release, so this manual-releases.md
27
+ change is to release a new minor version.
28
+
29
+ Reference: #<the number of a relevant pull request, issue, or commit>
30
+ ```
31
+
32
+ ** Patch**
33
+
34
+ ```
35
+ fix(release): manually release a patch version
36
+
37
+ There was an issue with a patch release, so this manual-releases.md
38
+ change is to release a new patch version.
39
+
40
+ Reference: #<the number of a relevant pull request, issue, or commit>
41
+ ```
42
+
43
+ The number of times we've had to do a manual release is: 1
You can’t perform that action at this time.
0 commit comments