@@ -26,19 +26,20 @@ For reference, let your copy of the xml-dtd release code be at
26
26
` /path/to/xml-dtd ` .
27
27
28
28
2 ) Use ` changes.sh <new-version> ` to create a ` CHANGES.txt ` file with the
29
- changes from the latest tag. For example if you are releasing ` 4.2 .1 ` :
29
+ changes from the latest tag. For example if you are releasing ` 4.3 .1 ` :
30
30
31
31
``` shell
32
32
cd /path/to/xml-dtd
33
- ./changes.sh 4.2 .1
33
+ ./changes.sh 4.3 .1
34
34
```
35
35
36
36
Edit the resulting ` CHANGES.txt ` as convenient, to use it as the basis for the
37
37
detailed list of changes when you fill the ` RELEASE_NOTES.md ` and the new
38
38
release in Github.
39
39
40
- Complete the Release Notes and check whether the dependencies mentioned in the
41
- ` README.md ` are correct. Commit the changes.
40
+ Complete the Release Notes and update the version in the Gradle example of
41
+ ` README.md ` , also check whether the dependencies mentioned there are correct.
42
+ Commit the changes.
42
43
43
44
3 ) Bump the ` version ` in the [ ` build.gradle ` ] ( build.gradle ) file or remove the
44
45
` -SNAPSHOT ` suffix as necessary. Commit and push all the changes to the Git
@@ -87,7 +88,7 @@ mv /path/to/css4j-dist/build/docs/javadoc/* /path/to/css4j.github.io/api/latest
87
88
```
88
89
89
90
If the changes to the ` css4j.github.io ` repo look correct, commit them with a
90
- description like "Latest modular Javadocs after xml-dtd 4.2 .1" and push.
91
+ description like "Latest modular Javadocs after xml-dtd 4.3 .1" and push.
91
92
92
93
Check whether the [ "Examples" CI] ( https://github.com/css4j/css4j.github.io/actions/workflows/examples.yml )
93
94
triggered by that commit to the ` css4j.github.io ` repository completed
@@ -98,8 +99,8 @@ for example.
98
99
99
100
``` shell
100
101
cd /path/to/xml-dtd
101
- git tag -s v4.2 .1 -m " Release 4.2 .1"
102
- git push origin v4.2 .1
102
+ git tag -s v4.3 .1 -m " Release 4.3 .1"
103
+ git push origin v4.3 .1
103
104
```
104
105
105
106
or ` git tag -a ` instead of ` -s ` if you do not plan to sign the tag. But it is
0 commit comments