Skip to content

Commit 803674f

Browse files
committed
Merge branch 'main' into delm/feat/schema-type
2 parents 251ae7d + 1ca681c commit 803674f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

deps/ada.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2023-09-05 14:59:23 -0400. Do not edit! */
1+
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */
@@ -15009,7 +15009,7 @@ uint8_t ada_get_host_type(ada_url result) noexcept {
1500915009
return r->host_type;
1501015010
}
1501115011

15012-
uint8_t ada_get_schema_type(ada_url result) noexcept {
15012+
uint8_t ada_get_scheme_type(ada_url result) noexcept {
1501315013
ada::result<ada::url_aggregator>& r = get_instance(result);
1501415014
if (!r) {
1501515015
return 0;

deps/ada.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2023-09-05 14:59:23 -0400. Do not edit! */
1+
/* auto-generated on 2023-09-05 16:55:45 -0400. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -6926,14 +6926,14 @@ inline void url_search_params::sort() {
69266926
#ifndef ADA_ADA_VERSION_H
69276927
#define ADA_ADA_VERSION_H
69286928

6929-
#define ADA_VERSION "2.6.6"
6929+
#define ADA_VERSION "2.6.7"
69306930

69316931
namespace ada {
69326932

69336933
enum {
69346934
ADA_VERSION_MAJOR = 2,
69356935
ADA_VERSION_MINOR = 6,
6936-
ADA_VERSION_REVISION = 6,
6936+
ADA_VERSION_REVISION = 7,
69376937
};
69386938

69396939
} // namespace ada

deps/ada_c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ada_string ada_get_pathname(ada_url result);
6969
ada_string ada_get_search(ada_url result);
7070
ada_string ada_get_protocol(ada_url result);
7171
uint8_t ada_get_host_type(ada_url result);
72-
uint8_t ada_get_schema_type(ada_url result);
72+
uint8_t ada_get_scheme_type(ada_url result);
7373

7474
// url_aggregator setters
7575
// if ada_is_valid(result)) is false, the setters have no effect

0 commit comments

Comments
 (0)