Skip to content

Commit fb7deb4

Browse files
committed
release: 2.2
Signed-off-by: Jorge Solórzano <[email protected]>
1 parent 12a28f2 commit fb7deb4

File tree

12 files changed

+17
-15
lines changed

12 files changed

+17
-15
lines changed

CHANGELOG.md

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

44
## [Unreleased]
55

6-
## [2.2] - Unreleased
6+
## [2.2] - 2024-06-25
77
### :building_construction: Improvements
88
- Ensure the LICENSE file is included in the Jar file.
99
- Fix reproducible build.
@@ -44,4 +44,5 @@ All notable changes to this project will be documented in this file.
4444

4545
[2.0]: https://github.com/ongres/stringprep/compare/1.1...2.0
4646
[2.1]: https://github.com/ongres/stringprep/compare/2.0...2.1
47+
[2.2]: https://github.com/ongres/stringprep/compare/2.1...2.2
4748
[Unreleased]: https://github.com/ongres/stringprep/compare/2.1...main

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Import Maven dependency:
2424
<dependency>
2525
<groupId>com.ongres.stringprep</groupId>
2626
<artifactId>saslprep</artifactId>
27-
<version>2.1</version>
27+
<version>2.2</version>
2828
</dependency>
2929
```
3030

@@ -40,7 +40,7 @@ Import Maven dependency:
4040
<dependency>
4141
<groupId>com.ongres.stringprep</groupId>
4242
<artifactId>nameprep</artifactId>
43-
<version>2.1</version>
43+
<version>2.2</version>
4444
</dependency>
4545
```
4646

@@ -54,7 +54,7 @@ Import the `SASLprep` dependency, this transitively imports the `Stringprep` dep
5454
<dependency>
5555
<groupId>com.ongres.stringprep</groupId>
5656
<artifactId>saslprep</artifactId>
57-
<version>2.1</version>
57+
<version>2.2</version>
5858
</dependency>
5959
```
6060

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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
10+
<version>2.2</version>
1111

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

parent/pom.xml

+3-2
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.2-SNAPSHOT</version>
7+
<version>2.2</version>
88
<packaging>pom</packaging>
99

1010
<name>Stringprep Project</name>
@@ -46,6 +46,7 @@
4646
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
4747
<connection>scm:git:[email protected]:ongres/stringprep.git</connection>
4848
<developerConnection>scm:git:[email protected]:ongres/stringprep.git</developerConnection>
49+
<tag>2.2</tag>
4950
<url>https://github.com/ongres/stringprep</url>
5051
</scm>
5152

@@ -71,7 +72,7 @@
7172
<base.java.version>8</base.java.version>
7273
<maven.compiler.source>${base.java.version}</maven.compiler.source>
7374
<maven.compiler.target>${base.java.version}</maven.compiler.target>
74-
<project.build.outputTimestamp>2024-04-01T16:00:00Z</project.build.outputTimestamp>
75+
<project.build.outputTimestamp>2024-06-25T23:30:00Z</project.build.outputTimestamp>
7576
<!-- Dependency versions -->
7677
<junit5.version>5.10.2</junit5.version>
7778
<!-- Plugins versions -->

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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
10+
<version>2.2</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.2-SNAPSHOT</version>
8+
<version>2.2</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.2-SNAPSHOT</version>
10+
<version>2.2</version>
1111

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

0 commit comments

Comments
 (0)