Skip to content

Commit dac5beb

Browse files
committed
Release 3.7
1 parent 75f39ab commit dac5beb

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

RELEASE_HOWTO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ cd /path/to/carte-util
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.6.1`:
43+
changes from the latest tag. For example if you are releasing `3.7.1`:
4444

4545
```shell
46-
./changes.sh 3.6.1
46+
./changes.sh 3.7.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 carte-util 3.6.1" and push.
86+
description like "Latest modular Javadocs after carte-util 3.7.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/carte-util
97-
git tag -s v3.6.1 -m "Release 3.6.1"
98-
git push origin v3.6.1
97+
git tag -s v3.7.1 -m "Release 3.7.1"
98+
git push origin v3.7.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: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
plugins {
211
id 'java-library'
312
id 'maven-publish'
@@ -7,7 +16,7 @@ group = 'io.sf.carte'
716

817
description = 'carte-util'
918

10-
version = '3.6.1-SNAPSHOT'
19+
version = '3.7'
1120

1221
sourceSets {
1322
main {

0 commit comments

Comments
 (0)