Skip to content

Commit de042a9

Browse files
committed
Release 3.1
1 parent 5221648 commit de042a9

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2023, Carlos Amengual
2+
* Copyright (c) 2017-2025, Carlos Amengual
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without

RELEASE_HOWTO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ cd /path/to/tokenproducer
4040
```
4141

4242
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`:
4444

4545
```shell
46-
./changes.sh 3.0.1
46+
./changes.sh 3.1.1
4747
```
4848

4949
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
8383
```
8484

8585
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.
8787

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

9595
```shell
9696
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
9999
```
100100

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

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
plugins {
213
id 'java-library'
314
id 'maven-publish'
@@ -7,7 +18,7 @@ group = 'io.sf.carte'
718

819
description = 'tokenproducer'
920

10-
version = '3.0.1-SNAPSHOT'
21+
version = '3.1'
1122

1223
dependencies {
1324
testImplementation 'org.junit.jupiter:junit-jupiter:5.12.1'

0 commit comments

Comments
 (0)