Skip to content

Commit cf5942c

Browse files
committed
Release 2.4
1 parent b03e0f8 commit cf5942c

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ dependencies {
284284
}
285285
```
286286
where `echosvgVersion` would be defined in a `gradle.properties` file (current
287-
version is `2.3`).
287+
version is `2.4`).
288288

289289
<br/>
290290

RELEASE_HOWTO.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ cd /path/to/echosvg
4848

4949
5) For convenience, now copy all the produced _jar_ files into a new `jar`
5050
directory and create a Zip archive of them. For example if you are releasing
51-
`2.3.1`:
51+
`2.4.1`:
5252

5353
```shell
5454
./gradlew copyJars
55-
mv jar echosvg-2.3.1-bin
56-
7z a -mx9 echosvg-2.3.1-binaries.zip echosvg-2.3.1-bin
55+
mv jar echosvg-2.4.1-bin
56+
7z a -mx9 echosvg-2.4.1-binaries.zip echosvg-2.4.1-bin
5757
```
5858

5959
6) Use `changes.sh <new-version>` to create a `CHANGES.txt` file for the new
6060
version, with the changes from the latest tag:
6161

6262
```shell
63-
./changes.sh 2.3.1
63+
./changes.sh 2.4.1
6464
```
6565

6666
Edit the resulting `CHANGES.txt` as convenient, to use it as the basis for the
@@ -100,9 +100,9 @@ archiver):
100100
cd /path/to/echosvg
101101
./gradlew modularJavadoc
102102
cd echosvg-all/build/docs
103-
mv modular echosvg-2.3.1-modular-javadocs
104-
7z a echosvg-2.3.1-modular-javadocs.7z echosvg-2.3.1-modular-javadocs
105-
7z a -mx9 echosvg-2.3.1-modular-javadocs.zip echosvg-2.3.1-modular-javadocs
103+
mv modular echosvg-2.4.1-modular-javadocs
104+
7z a echosvg-2.4.1-modular-javadocs.7z echosvg-2.4.1-modular-javadocs
105+
7z a -mx9 echosvg-2.4.1-modular-javadocs.zip echosvg-2.4.1-modular-javadocs
106106
```
107107

108108
The compressed archives will be part of the published release. Notice that the
@@ -115,8 +115,8 @@ Provided that you have the required credentials, you could update it via_ `rsync
115115

116116
```shell
117117
cd /path/to/echosvg
118-
git tag -s v2.3.1 -m "Release 2.3.1"
119-
git push origin v2.3.1
118+
git tag -s v2.4.1 -m "Release 2.4.1"
119+
git push origin v2.4.1
120120
```
121121

122122
or `git tag -a` instead of `-s` if you do not plan to sign the tag. But it is
@@ -131,14 +131,14 @@ Summarize the most important changes in the release description, then create a
131131
`## Detail of changes` section and paste the contents of the `CHANGES.txt` file
132132
under it.
133133

134-
Add to the Github release the `echosvg-2.3.1-bin.zip` archive that you created,
135-
the modular javadoc archives (`echosvg-2.3.1-modular-javadocs.7z` and
136-
`echosvg-2.3.1-modular-javadocs.zip`), and the result of executing:
134+
Add to the Github release the `echosvg-2.4.1-bin.zip` archive that you created,
135+
the modular javadoc archives (`echosvg-2.4.1-modular-javadocs.7z` and
136+
`echosvg-2.4.1-modular-javadocs.zip`), and the result of executing:
137137

138138
```shell
139139
./gradlew uberjar
140140
```
141-
to be found at the `echosvg-all/build/libs/echosvg-all-2.3.1-alldeps.jar`. Then execute:
141+
to be found at the `echosvg-all/build/libs/echosvg-all-2.4.1-alldeps.jar`. Then execute:
142142

143143
```shell
144144
./gradlew echosvg-codec-jar-with-deps
@@ -152,12 +152,12 @@ to be found at the `echosvg-all/build/libs/echosvg-all-2.3.1-alldeps.jar`. Then
152152
and add to the release the archives at
153153

154154
```
155-
echosvg-codec/build/libs/echosvg-codec-2.3.1-with-deps.jar
156-
echosvg-svggen/build/libs/echosvg-svggen-2.3.1-with-deps.jar
157-
echosvg-transcoder/build/libs/echosvg-transcoder-2.3.1-with-deps.jar
158-
echosvg-transcoder-svg/build/libs/echosvg-transcoder-svg-2.3.1-with-deps.jar
159-
echosvg-transcoder-tosvg/build/libs/echosvg-transcoder-tosvg-2.3.1-with-deps.jar
160-
echosvg-transcoder-svg2svg/build/libs/echosvg-transcoder-svg2svg-2.3.1-with-deps.jar
155+
echosvg-codec/build/libs/echosvg-codec-2.4.1-with-deps.jar
156+
echosvg-svggen/build/libs/echosvg-svggen-2.4.1-with-deps.jar
157+
echosvg-transcoder/build/libs/echosvg-transcoder-2.4.1-with-deps.jar
158+
echosvg-transcoder-svg/build/libs/echosvg-transcoder-svg-2.4.1-with-deps.jar
159+
echosvg-transcoder-tosvg/build/libs/echosvg-transcoder-tosvg-2.4.1-with-deps.jar
160+
echosvg-transcoder-svg2svg/build/libs/echosvg-transcoder-svg2svg-2.4.1-with-deps.jar
161161
```
162162

163163
13) Verify that the new [Github packages](https://github.com/orgs/css4j/packages?repo_name=echosvg)

buildSrc/src/main/groovy/echosvg.java-conventions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repositories {
2525
}
2626

2727
group = 'io.sf.carte'
28-
version = '2.4-SNAPSHOT'
28+
version = '2.4'
2929

3030
java {
3131
withSourcesJar()

0 commit comments

Comments
 (0)