Skip to content

Commit 9a274f9

Browse files
committed
release: Prepare 2.1 release
Signed-off-by: Jorge Solórzano <[email protected]>
1 parent 77ceb8c commit 9a274f9

File tree

11 files changed

+14
-15
lines changed

11 files changed

+14
-15
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
5+
6+
## [2.1] - 2024-04-01
57
### :bug: Bug Fixes
68
- `Stringprep::getProvider` was not working on the module path.
79

@@ -13,6 +15,7 @@ All notable changes to this project will be documented in this file.
1315
- Exports the packages of the profiles in the module declaration to allow creating instances without the ServiceLoader lookup.
1416
- Introduce the annotation `@ProfileName` to declare the name of the profile used for ServiceLoader lookup.
1517
- Now the released jars are reproducible.
18+
- Publish CycloneDX SBOM.
1619

1720
## [2.0] - 2021-02-01
1821
### :boom: Breaking changes

codegen/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

coverage-report/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

nameprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

nameprep/src/it/jpms-nameprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.ongres.stringprep.it</groupId>
88
<artifactId>jpms-nameprep</artifactId>
99
<name>JPMS Nameprep</name>
10-
<version>2.1-SNAPSHOT</version>
10+
<version>2.1</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

parent/pom.xml

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.ongres.stringprep</groupId>
66
<artifactId>stringprep-parent</artifactId>
7-
<version>2.1-SNAPSHOT</version>
7+
<version>2.1</version>
88
<packaging>pom</packaging>
99

1010
<name>Stringprep Project</name>
@@ -71,7 +71,7 @@
7171
<base.java.version>8</base.java.version>
7272
<maven.compiler.source>${base.java.version}</maven.compiler.source>
7373
<maven.compiler.target>${base.java.version}</maven.compiler.target>
74-
<project.build.outputTimestamp>2022-02-01T19:02:33Z</project.build.outputTimestamp>
74+
<project.build.outputTimestamp>2024-04-01T16:00:00Z</project.build.outputTimestamp>
7575
<!-- Dependency versions -->
7676
<junit5.version>5.10.2</junit5.version>
7777
<!-- Plugins versions -->
@@ -677,10 +677,6 @@
677677
<groupId>org.sonatype.plugins</groupId>
678678
<artifactId>nexus-staging-maven-plugin</artifactId>
679679
</plugin>
680-
<plugin>
681-
<groupId>org.apache.maven.plugins</groupId>
682-
<artifactId>maven-artifact-plugin</artifactId>
683-
</plugin>
684680
<plugin>
685681
<groupId>org.cyclonedx</groupId>
686682
<artifactId>cyclonedx-maven-plugin</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>parent/pom.xml</relativePath>
1010
</parent>
1111

saslprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

saslprep/src/it/jpms-saslprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.ongres.stringprep.it</groupId>
88
<artifactId>jpms-saslprep</artifactId>
99
<name>JPMS SASLprep</name>
10-
<version>2.1-SNAPSHOT</version>
10+
<version>2.1</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

stringprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.ongres.stringprep</groupId>
77
<artifactId>stringprep-parent</artifactId>
8-
<version>2.1-SNAPSHOT</version>
8+
<version>2.1</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

stringprep/src/it/jpms-stringprep/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.ongres.stringprep.it</groupId>
88
<artifactId>jpms-stringprep</artifactId>
99
<name>JPMS Stringprep</name>
10-
<version>2.1-SNAPSHOT</version>
10+
<version>2.1</version>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)