Skip to content

Commit 621ede6

Browse files
authored
Updates for ada 3.1.3 / version 1.20.0 (#104)
1 parent 08fbcf7 commit 621ede6

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

ada_url/ada.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-02-25 13:08:18 -0500. Do not edit! */
1+
/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */

ada_url/ada.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-02-25 13:08:18 -0500. Do not edit! */
1+
/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -9480,7 +9480,8 @@ constructor_string_parser<regex_provider>::is_non_special_pattern_char(
94809480
// If token’s value is not value, then return false.
94819481
// TODO: Remove this once we make sure get_safe_token returns a non-empty
94829482
// string.
9483-
if (!token->value.empty() && token->value[0] != value) {
9483+
if (!token->value.empty() &&
9484+
static_cast<uint32_t>(token->value[0]) != value) {
94849485
return false;
94859486
}
94869487

@@ -10478,14 +10479,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
1047810479
#ifndef ADA_ADA_VERSION_H
1047910480
#define ADA_ADA_VERSION_H
1048010481

10481-
#define ADA_VERSION "3.1.2"
10482+
#define ADA_VERSION "3.1.3"
1048210483

1048310484
namespace ada {
1048410485

1048510486
enum {
1048610487
ADA_VERSION_MAJOR = 3,
1048710488
ADA_VERSION_MINOR = 1,
10488-
ADA_VERSION_REVISION = 2,
10489+
ADA_VERSION_REVISION = 3,
1048910490
};
1049010491

1049110492
} // namespace ada

0 commit comments

Comments
 (0)