Skip to content

Commit 860cdf0

Browse files
authored
Release 10.5.23 (#322)
* [maven-release-plugin] prepare release java-sdk-10.5.23 * [maven-release-plugin] prepare for next development iteration * Update pom * update README.md
1 parent 300552b commit 860cdf0

File tree

3 files changed

+64
-9
lines changed

3 files changed

+64
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## Version [10.5.23] - (2025-07-03)
6+
- fix: inconsistent rich text embedding
7+
58
## Version [10.5.21] - (2025-03-04)
69
- fix: add limit to sync query
710

@@ -289,6 +292,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
289292
## Version 1.0.0 - 2014-08-13
290293
Initial release.
291294

295+
[10.5.23]: https://github.com/contentful/contentful.java/compare/v.10.5.21...v.10.5.23
292296
[10.5.21]: https://github.com/contentful/contentful.java/compare/v.10.5.19...v.10.5.21
293297
[10.5.19]: https://github.com/contentful/contentful.java/compare/v.10.5.18...v.10.5.19
294298
[10.5.18]: https://github.com/contentful/contentful.java/compare/v.10.5.17...v.10.5.18

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ Install the Contentful dependency:
7676
<dependency>
7777
<groupId>com.contentful.java</groupId>
7878
<artifactId>java-sdk</artifactId>
79-
<version>10.5.22</version>
79+
<version>10.5.23</version>
8080
</dependency>
8181
```
8282

8383
* _Gradle_
8484

8585
```groovy
86-
compile 'com.contentful.java:java-sdk:10.5.22'
86+
compile 'com.contentful.java:java-sdk:10.5.23'
8787
```
8888

8989
This library requires Java 8 (or higher version) or Android 21.

pom.xml

Lines changed: 58 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,13 @@
33

44
<groupId>com.contentful.java</groupId>
55
<artifactId>java-sdk</artifactId>
6-
<version>10.5.23-SNAPSHOT</version>
6+
<version>10.5.23</version>
77
<packaging>jar</packaging>
88

99
<name>${project.groupId}:${project.artifactId}</name>
1010
<description>Java SDK for Contentful's Content Delivery API.</description>
1111
<url>http://github.com/contentful/contentful.java</url>
1212

13-
<parent>
14-
<groupId>org.sonatype.oss</groupId>
15-
<artifactId>oss-parent</artifactId>
16-
<version>7</version>
17-
</parent>
18-
1913
<scm>
2014
<url>http://github.com/contentful/contentful.java</url>
2115
<connection>scm:git:git://github.com/contentful/contentful.java.git</connection>
@@ -40,6 +34,14 @@
4034
<url>http://contentful.com</url>
4135
</organization>
4236

37+
<developers>
38+
<developer>
39+
<id>rafal</id>
40+
<name>Rafal Niski</name>
41+
<email>[email protected]</email>
42+
</developer>
43+
</developers>
44+
4345
<properties>
4446
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4547
<project.reporting.sourceEncoding>UTF-8</project.reporting.sourceEncoding>
@@ -247,6 +249,55 @@
247249
</execution>
248250
</executions>
249251
</plugin>
252+
<plugin>
253+
<groupId>org.sonatype.central</groupId>
254+
<artifactId>central-publishing-maven-plugin</artifactId>
255+
<version>0.8.0</version>
256+
<extensions>true</extensions>
257+
<configuration>
258+
<publishingServerId>central</publishingServerId>
259+
</configuration>
260+
</plugin>
261+
<plugin>
262+
<groupId>org.apache.maven.plugins</groupId>
263+
<artifactId>maven-source-plugin</artifactId>
264+
<version>3.3.0</version>
265+
<executions>
266+
<execution>
267+
<id>attach-sources</id>
268+
<goals>
269+
<goal>jar</goal>
270+
</goals>
271+
</execution>
272+
</executions>
273+
</plugin>
274+
<plugin>
275+
<groupId>org.apache.maven.plugins</groupId>
276+
<artifactId>maven-javadoc-plugin</artifactId>
277+
<version>3.6.3</version>
278+
<executions>
279+
<execution>
280+
<id>attach-javadocs</id>
281+
<goals>
282+
<goal>jar</goal>
283+
</goals>
284+
</execution>
285+
</executions>
286+
</plugin>
287+
<plugin>
288+
<groupId>org.apache.maven.plugins</groupId>
289+
<artifactId>maven-gpg-plugin</artifactId>
290+
<version>3.1.0</version>
291+
<executions>
292+
<execution>
293+
<id>sign-artifacts</id>
294+
<phase>verify</phase>
295+
<goals>
296+
<goal>sign</goal>
297+
</goals>
298+
</execution>
299+
</executions>
300+
</plugin>
250301
</plugins>
251302
</build>
252303
</project>

0 commit comments

Comments
 (0)