Skip to content

Commit 582c484

Browse files
committed
release: scram 3.1
Signed-off-by: Jorge Solórzano <[email protected]>
1 parent 45b245e commit 582c484

File tree

7 files changed

+25
-49
lines changed

7 files changed

+25
-49
lines changed

CHANGELOG.md

+13-36
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
5+
6+
## [3.1] - 2024-06-26
57
### :building_construction: Improvements
6-
- Ensure the LICENSE file is included in the Jar file.
8+
- Ensure the `LICENSE` file is included in the Jar file.
9+
- Update of the `saslprep` dependency to 2.2.
10+
11+
### :ghost: Maintenance
12+
- Added coverage report module.
13+
- Updated dependencies and maven plugins.
14+
- Remove `nexus-staging-maven-plugin`.
715

8-
## 3.0 - 2024-04-03
16+
## [3.0] - 2024-04-03
917
### :boom: Breaking changes
1018
- :warning: Full refactor of the `scram` java implementation, this release is compatible with Java 8+, but it's incompatible with previous releases :warning:
1119

@@ -28,37 +36,6 @@ All notable changes to this project will be documented in this file.
2836
- Migrate the main repo back to GitHub.
2937
- Remove the shaded Bouncy Castle pbkdf2 and base64 implementation used for Java 7 support.
3038

31-
# 2.1
32-
33-
* Updated saslprep to version 1.1 to remove a build dependency coming from stringprep module
34-
35-
# 2.0
36-
37-
* Out of beta testing
38-
39-
# 2.0-beta3
40-
41-
* Fixed licenses issues
42-
43-
# 2.0-beta2
44-
45-
* Added saslprep tests
46-
47-
# 2.0-beta1
48-
49-
* Add new dependency StringPrep
50-
51-
# 1.9-beta1
52-
53-
* API change to be compatible with Java 7
54-
* Added standard SASLPrep
55-
* Failover to bouncy castle implementation of PBKDF2WithHmacSHA256 to support Oracle JDK 7
56-
57-
# 1.0.0-beta.2
58-
59-
* Fix maven issue and javadoc
60-
61-
# 1.0.0-beta.1
62-
63-
* First version
64-
39+
[3.0]: https://github.com/ongres/scram/compare/2.1...3.0
40+
[3.1]: https://github.com/ongres/scram/compare/3.0...3.1
41+
[Unreleased]: https://github.com/ongres/scram/compare/3.1...main

coverage-report/pom.xml

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

pom.xml

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

scram-client/pom.xml

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

scram-client/src/it/jpms-scram-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.ongres.scram.it</groupId>
88
<artifactId>jpms-scram-client</artifactId>
99
<name>JPMS Scram Client</name>
10-
<version>3.1-SNAPSHOT</version>
10+
<version>3.1</version>
1111

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

scram-common/pom.xml

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

scram-parent/pom.xml

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

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

1010
<name>SCRAM - Parent</name>
@@ -44,6 +44,7 @@
4444
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
4545
<connection>scm:git:https://github.com/ongres/scram.git</connection>
4646
<developerConnection>scm:git:[email protected]:ongres/scram.git</developerConnection>
47+
<tag>3.1</tag>
4748
<url>https://github.com/ongres/scram</url>
4849
</scm>
4950

@@ -54,12 +55,12 @@
5455

5556
<distributionManagement>
5657
<repository>
57-
<id>ossrh-release</id>
58+
<id>ossrh</id>
5859
<name>OSSRH Release repository</name>
5960
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
6061
</repository>
6162
<snapshotRepository>
62-
<id>ossrh-snapshot</id>
63+
<id>ossrh</id>
6364
<name>OSSRH Snapshot repository</name>
6465
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
6566
</snapshotRepository>
@@ -71,11 +72,11 @@
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-03T17:00:00Z</project.build.outputTimestamp>
75+
<project.build.outputTimestamp>2024-06-26T00:50:00Z</project.build.outputTimestamp>
7576
<!-- Dependency versions -->
7677
<jetbrains-annotations.version>24.1.0</jetbrains-annotations.version>
7778
<junit5.version>5.10.2</junit5.version>
78-
<saslprep.version>2.1</saslprep.version>
79+
<saslprep.version>2.2</saslprep.version>
7980
<!-- Plugins versions -->
8081
<compiler-plugin.version>3.13.0</compiler-plugin.version>
8182
<jar-plugin.version>3.4.2</jar-plugin.version>
@@ -486,9 +487,7 @@
486487
<compilerArgs>
487488
<arg>-Xlint:all</arg>
488489
<arg>-XDcompilePolicy=simple</arg>
489-
<arg>-Xplugin:ErrorProne \
490-
-XepAllErrorsAsWarnings \
491-
-XepDisableWarningsInGeneratedCode</arg>
490+
<arg>-Xplugin:ErrorProne -XepAllErrorsAsWarnings -XepDisableWarningsInGeneratedCode</arg>
492491
<!-- Required on JDK 16+ due to JEP 396 -->
493492
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
494493
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>

0 commit comments

Comments
 (0)