fix expected quiche version

Signed-off-by: Olivier Lamy <olamy@apache.org>
This commit is contained in:
Olivier Lamy 2024-04-02 17:55:25 +10:00 committed by dependabot[bot]
parent c5f6e0c388
commit ea18cfe84e
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public class quiche_h
{
// This interface is a translation of the quiche.h header of a specific version.
// It needs to be reviewed each time the native lib version changes.
private static final String EXPECTED_QUICHE_VERSION = "0.20.0";
private static final String EXPECTED_QUICHE_VERSION = "0.20.1";
public static final byte C_FALSE = 0;
public static final byte C_TRUE = 1;

View File

@ -31,7 +31,7 @@ public interface LibQuiche extends Library
{
// This interface is a translation of the quiche.h header of a specific version.
// It needs to be reviewed each time the native lib version changes.
String EXPECTED_QUICHE_VERSION = "0.20.0";
String EXPECTED_QUICHE_VERSION = "0.20.1";
// The charset used to convert java.lang.String to char * and vice versa.
Charset CHARSET = StandardCharsets.UTF_8;