Skip to content

Commit 3991247

Browse files
committed
ada 3.0.1
1 parent 1dcd92e commit 3991247

File tree

2 files changed

+49
-5
lines changed

2 files changed

+49
-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-01-30 14:25:38 -0500. Do not edit! */
1+
/* auto-generated on 2025-01-30 18:48:55 -0500. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */

ada_url/ada.h

+48-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-01-30 14:25:38 -0500. Do not edit! */
1+
/* auto-generated on 2025-01-30 18:48:55 -0500. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -5319,15 +5319,59 @@ class url_pattern {
53195319
std::variant<std::string_view, url_pattern_init> input,
53205320
const std::string_view* base_url, const url_pattern_options* options);
53215321

5322-
private:
5322+
/**
5323+
* @private
5324+
* We can not make this private due to a LLVM bug.
5325+
* Ref: https://github.com/ada-url/ada/pull/859
5326+
*/
53235327
url_pattern_component<regex_provider> protocol_component{};
5328+
/**
5329+
* @private
5330+
* We can not make this private due to a LLVM bug.
5331+
* Ref: https://github.com/ada-url/ada/pull/859
5332+
*/
53245333
url_pattern_component<regex_provider> username_component{};
5334+
/**
5335+
* @private
5336+
* We can not make this private due to a LLVM bug.
5337+
* Ref: https://github.com/ada-url/ada/pull/859
5338+
*/
53255339
url_pattern_component<regex_provider> password_component{};
5340+
/**
5341+
* @private
5342+
* We can not make this private due to a LLVM bug.
5343+
* Ref: https://github.com/ada-url/ada/pull/859
5344+
*/
53265345
url_pattern_component<regex_provider> hostname_component{};
5346+
/**
5347+
* @private
5348+
* We can not make this private due to a LLVM bug.
5349+
* Ref: https://github.com/ada-url/ada/pull/859
5350+
*/
53275351
url_pattern_component<regex_provider> port_component{};
5352+
/**
5353+
* @private
5354+
* We can not make this private due to a LLVM bug.
5355+
* Ref: https://github.com/ada-url/ada/pull/859
5356+
*/
53285357
url_pattern_component<regex_provider> pathname_component{};
5358+
/**
5359+
* @private
5360+
* We can not make this private due to a LLVM bug.
5361+
* Ref: https://github.com/ada-url/ada/pull/859
5362+
*/
53295363
url_pattern_component<regex_provider> search_component{};
5364+
/**
5365+
* @private
5366+
* We can not make this private due to a LLVM bug.
5367+
* Ref: https://github.com/ada-url/ada/pull/859
5368+
*/
53305369
url_pattern_component<regex_provider> hash_component{};
5370+
/**
5371+
* @private
5372+
* We can not make this private due to a LLVM bug.
5373+
* Ref: https://github.com/ada-url/ada/pull/859
5374+
*/
53315375
bool ignore_case_ = false;
53325376
};
53335377

@@ -10286,14 +10330,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
1028610330
#ifndef ADA_ADA_VERSION_H
1028710331
#define ADA_ADA_VERSION_H
1028810332

10289-
#define ADA_VERSION "3.0.0"
10333+
#define ADA_VERSION "3.0.1"
1029010334

1029110335
namespace ada {
1029210336

1029310337
enum {
1029410338
ADA_VERSION_MAJOR = 3,
1029510339
ADA_VERSION_MINOR = 0,
10296-
ADA_VERSION_REVISION = 0,
10340+
ADA_VERSION_REVISION = 1,
1029710341
};
1029810342

1029910343
} // namespace ada

0 commit comments

Comments
 (0)