Skip to content

Commit 3c27c3c

Browse files
authored
Version 1.15.2 (#94)
* Update to ada 2.9.2 * Bump version to 1.15.2
1 parent a5f7f8a commit 3c27c3c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

ada_url/ada.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2024-08-24 20:20:43 -0400. Do not edit! */
1+
/* auto-generated on 2024-09-02 20:07:32 -0400. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */
@@ -11553,21 +11553,21 @@ ada_really_inline bool url::parse_scheme(const std::string_view input) {
1155311553
// If url's scheme is not a special scheme and buffer is a special scheme,
1155411554
// then return.
1155511555
if (is_special() != is_input_special) {
11556-
return true;
11556+
return false;
1155711557
}
1155811558

1155911559
// If url includes credentials or has a non-null port, and buffer is
1156011560
// "file", then return.
1156111561
if ((has_credentials() || port.has_value()) &&
1156211562
parsed_type == ada::scheme::type::FILE) {
11563-
return true;
11563+
return false;
1156411564
}
1156511565

1156611566
// If url's scheme is "file" and its host is an empty host, then return.
1156711567
// An empty host is the empty string.
1156811568
if (type == ada::scheme::type::FILE && host.has_value() &&
1156911569
host.value().empty()) {
11570-
return true;
11570+
return false;
1157111571
}
1157211572
}
1157311573

@@ -13215,21 +13215,21 @@ template <bool has_state_override>
1321513215
// If url's scheme is not a special scheme and buffer is a special scheme,
1321613216
// then return.
1321713217
if (is_special() != is_input_special) {
13218-
return true;
13218+
return false;
1321913219
}
1322013220

1322113221
// If url includes credentials or has a non-null port, and buffer is
1322213222
// "file", then return.
1322313223
if ((has_credentials() || components.port != url_components::omitted) &&
1322413224
parsed_type == ada::scheme::type::FILE) {
13225-
return true;
13225+
return false;
1322613226
}
1322713227

1322813228
// If url's scheme is "file" and its host is an empty host, then return.
1322913229
// An empty host is the empty string.
1323013230
if (type == ada::scheme::type::FILE &&
1323113231
components.host_start == components.host_end) {
13232-
return true;
13232+
return false;
1323313233
}
1323413234
}
1323513235

ada_url/ada.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2024-08-24 20:20:43 -0400. Do not edit! */
1+
/* auto-generated on 2024-09-02 20:07:32 -0400. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -7307,14 +7307,14 @@ url_search_params_entries_iter::next() {
73077307
#ifndef ADA_ADA_VERSION_H
73087308
#define ADA_ADA_VERSION_H
73097309

7310-
#define ADA_VERSION "2.9.1"
7310+
#define ADA_VERSION "2.9.2"
73117311

73127312
namespace ada {
73137313

73147314
enum {
73157315
ADA_VERSION_MAJOR = 2,
73167316
ADA_VERSION_MINOR = 9,
7317-
ADA_VERSION_REVISION = 1,
7317+
ADA_VERSION_REVISION = 2,
73187318
};
73197319

73207320
} // namespace ada

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ada-url"
7-
version = "1.15.1"
7+
version = "1.15.2"
88
authors = [
99
{name = "Bo Bayles", email = "[email protected]"},
1010
]

0 commit comments

Comments
 (0)