|
37 | 37 | In this case, you can use 4.94.0 as the version number. If the
|
38 | 38 | condition doesn't meet, use 4.94.1 (or 4.95.0).
|
39 | 39 |
|
| 40 | +3. Put a tag with Git |
| 41 | +======================================================= |
| 42 | + |
| 43 | +NOTE: this step is an optional if the commit for releasing is already |
| 44 | +tagged via another dialect. |
| 45 | + |
| 46 | +The tag you will put should have the same name as the version given in |
| 47 | +the step 2. |
| 48 | + |
| 49 | +Do "git tag" like:: |
| 50 | + |
| 51 | + $ git tag 4.95.0-this-is-an-example |
| 52 | + $ git push upstream 4.95.0-this-is-an-example |
| 53 | + |
| 54 | +If you took a mistake, you can delete the tag like:: |
| 55 | + |
| 56 | + $ git tag -d 4.95.0-this-is-an-example |
| 57 | + $ git push upstream :4.95.0-this-is-an-example |
40 | 58 |
|
41 |
| -3. Make the source archive for the release |
| 59 | +4. Make the source archive for the release |
42 | 60 | =======================================================
|
43 | 61 | ::
|
44 | 62 |
|
|
61 | 79 | $ make
|
62 | 80 | $ make check (if your dialect support the target)
|
63 | 81 |
|
64 |
| -4. Visit https://github.com/lsof-org/lsof/releases |
| 82 | +5. Visit https://github.com/lsof-org/lsof/releases |
65 | 83 | ========================================================================
|
66 | 84 |
|
67 |
| -4.1 Click [Draft new release] |
| 85 | +5.1 Click [Draft new release] |
68 | 86 | ------------------------------------------------------------------------
|
69 | 87 |
|
70 |
| -4.2 Fill the fields |
| 88 | +5.2 Fill the fields |
71 | 89 | ------------------------------------------------------------------------
|
72 | 90 |
|
73 |
| -4.2.1 Fill "Tag version" |
| 91 | +5.2.1 Choose a tag |
74 | 92 | ........................................................................
|
75 | 93 |
|
76 |
| -Fill with the version number given in the step 2. |
| 94 | +Choose with the tag given in the step 3. |
77 | 95 |
|
78 |
| -4.2.2 Fill "Release title" |
| 96 | +5.2.2 Fill "Release title" |
79 | 97 | ........................................................................
|
80 | 98 |
|
81 | 99 | Use the following form lsof-${theVersionNumber}-${dialect}.
|
82 | 100 |
|
83 | 101 | e.g. lsof-4.94.0-linux
|
84 | 102 |
|
85 |
| -4.2.3 Fill "Describe this release" |
| 103 | +5.2.3 Fill "Describe this release" |
86 | 104 | ........................................................................
|
87 | 105 |
|
88 | 106 | Copy and paste the changes described in 00DIST since the last release in
|
89 | 107 | your dialect.
|
90 | 108 |
|
91 |
| -4.2.4 Put the source archive generated step in 3. |
| 109 | +5.2.4 Put the source archive generated step in 4. |
92 | 110 | ........................................................................
|
93 | 111 |
|
94 | 112 | Click "Attach binaries by dropping them here or selecting them. ", then
|
95 | 113 | specify the archive file.
|
96 | 114 |
|
97 |
| -4.2.5 Check "This is a pre-release" |
| 115 | +5.2.5 Check "This is a pre-release" |
98 | 116 | ........................................................................
|
99 | 117 |
|
100 |
| -4.2.6 Click [Publish release] |
| 118 | +5.2.6 Click [Publish release] |
101 | 119 | ........................................................................
|
102 | 120 |
|
103 |
| -5. Verify the release |
| 121 | +6. Verify the release |
104 | 122 | ========================================================================
|
105 | 123 |
|
106 |
| -After step 4.2.6, the browser may show the page for the release. You can |
| 124 | +After step 5.2.6, the browser may show the page for the release. You can |
107 | 125 | re-read the description and the source code archives. You can verify
|
108 | 126 | what you did here.
|
109 | 127 |
|
|
0 commit comments