File tree Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017-2023 , Carlos Amengual
2
+ * Copyright (c) 2017-2025 , Carlos Amengual
3
3
* All rights reserved.
4
4
*
5
5
* Redistribution and use in source and binary forms, with or without
Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ cd /path/to/tokenproducer
40
40
```
41
41
42
42
5 ) Use ` changes.sh <new-version> ` to create a ` CHANGES.txt ` file with the
43
- changes from the latest tag. For example if you are releasing ` 3.0 .1 ` :
43
+ changes from the latest tag. For example if you are releasing ` 3.1 .1 ` :
44
44
45
45
``` shell
46
- ./changes.sh 3.0 .1
46
+ ./changes.sh 3.1 .1
47
47
```
48
48
49
49
Edit the resulting ` CHANGES.txt ` as convenient, to use it as the basis for the
@@ -83,7 +83,7 @@ mv /path/to/css4j-dist/build/docs/javadoc/* /path/to/css4j.github.io/api/latest
83
83
```
84
84
85
85
If the changes to the ` css4j.github.io ` repo look correct, commit them with a
86
- description like "Latest modular Javadocs after tokenproducer 3.0 .1" and push.
86
+ description like "Latest modular Javadocs after tokenproducer 3.1 .1" and push.
87
87
88
88
Check whether the [ "Examples" CI] ( https://github.com/css4j/css4j.github.io/actions/workflows/examples.yml )
89
89
triggered by that commit to the ` css4j.github.io ` repository completed
@@ -94,8 +94,8 @@ for example.
94
94
95
95
``` shell
96
96
cd /path/to/tokenproducer
97
- git tag -s v3.0 .1 -m " Release 3.0 .1"
98
- git push origin v3.0 .1
97
+ git tag -s v3.1 .1 -m " Release 3.1 .1"
98
+ git push origin v3.1 .1
99
99
```
100
100
101
101
or ` git tag -a ` instead of ` -s ` if you do not plan to sign the tag. But it is
Original file line number Diff line number Diff line change
1
+ /*
2
+
3
+ Copyright (c) 2021-2025, C. Amengual.
4
+
5
+ Licensed under a BSD-style License. You can find the license here:
6
+ https://css4j.github.io/LICENSE.txt
7
+
8
+ */
9
+
10
+ // SPDX-License-Identifier: BSD-3-Clause
11
+
1
12
plugins {
2
13
id ' java-library'
3
14
id ' maven-publish'
@@ -7,7 +18,7 @@ group = 'io.sf.carte'
7
18
8
19
description = ' tokenproducer'
9
20
10
- version = ' 3.0.1-SNAPSHOT '
21
+ version = ' 3.1 '
11
22
12
23
dependencies {
13
24
testImplementation ' org.junit.jupiter:junit-jupiter:5.12.1'
You can’t perform that action at this time.
0 commit comments