Skip to content

Commit baf8138

Browse files
committed
Start new development cycle
1 parent a83f18b commit baf8138

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

RELEASE_HOWTO.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ For reference, let your copy of the css4j-dom4j release code be at
2626
`/path/to/css4j-dom4j`.
2727

2828
2) Execute `./changes.sh <new-version>` to create a `CHANGES.txt` file with the
29-
changes from the latest tag. For example if you are releasing `5.1.1`:
29+
changes from the latest tag. For example if you are releasing `6.0.1`:
3030

3131
```shell
32-
./changes.sh 5.1.1
32+
./changes.sh 6.0.1
3333
```
3434

3535
Edit the resulting `CHANGES.txt` as convenient and use it as the basis to update
@@ -86,7 +86,7 @@ mv /path/to/css4j-dist/build/docs/javadoc/* /path/to/css4j.github.io/api/latest
8686
```
8787

8888
If the changes to the `css4j.github.io` repo look correct, commit them with a
89-
description like "Latest modular Javadocs after css4j-dom4j 5.1.1" and push.
89+
description like "Latest modular Javadocs after css4j-dom4j 6.0.1" and push.
9090

9191
Check whether the ["Examples" CI](https://github.com/css4j/css4j.github.io/actions/workflows/examples.yml)
9292
triggered by that commit to the `css4j.github.io` repository completed
@@ -97,8 +97,8 @@ for example.
9797

9898
```shell
9999
cd /path/to/css4j-dom4j
100-
git tag -s v5.1.1 -m "Release 5.1.1"
101-
git push origin v5.1.1
100+
git tag -s v6.0.1 -m "Release 6.0.1"
101+
git push origin v6.0.1
102102
```
103103

104104
or `git tag -a` instead of `-s` if you do not plan to sign the tag. But it is

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = 'io.sf.carte'
8-
version = '5.3'
8+
version = '6.0-SNAPSHOT'
99

1010
description = 'css4j-dom4j'
1111

0 commit comments

Comments
 (0)